diff options
Diffstat (limited to 'tests/index.test-d.ts')
| -rw-r--r-- | tests/index.test-d.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/index.test-d.ts b/tests/index.test-d.ts index 52df93c..ef9669a 100644 --- a/tests/index.test-d.ts +++ b/tests/index.test-d.ts @@ -11,17 +11,14 @@ interface User { response.data() ) } - ;async () => { const response = await Client.new().get<User>('http://example.com') expectType<User>(response.data()) } - ;async () => { const response = await Client.new().get<string>('http://example.com/string') expectType<string>(response.data()) } - ;async () => { const response = await Client.new().upload({ url: 'http://example.com', |
