diff options
author | Samrith Shankar <samrith-s@users.noreply.github.com> | 2020-03-20 14:38:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-20 09:38:34 -0400 |
commit | 798904b0f2ed0c7284b67bba2f125f406b5850de (patch) | |
tree | 5aba8d35aa8984aa778c894258bcaed56f1ce17c /cli/js/ops/fetch.ts | |
parent | 35f6e2e45ddb96524a6bdf54b0a6155caa88d5e0 (diff) |
Add require-await lint rule (#4401)
Diffstat (limited to 'cli/js/ops/fetch.ts')
-rw-r--r-- | cli/js/ops/fetch.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/fetch.ts b/cli/js/ops/fetch.ts index 8d6a461ab..09b9ac1ec 100644 --- a/cli/js/ops/fetch.ts +++ b/cli/js/ops/fetch.ts @@ -15,7 +15,7 @@ export interface FetchResponse { headers: Array<[string, string]>; } -export async function fetch( +export function fetch( args: FetchRequest, body: ArrayBufferView | undefined ): Promise<FetchResponse> { |