summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_access.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2020-08-25 09:43:54 +1000
committerGitHub <noreply@github.com>2020-08-24 19:43:54 -0400
commitc4d5b01acfe0cac31f94743a57e8e619178ba563 (patch)
tree1987fe2e23c4db59a44159f4c7d21ecc61be4ad3 /std/node/_fs/_fs_access.ts
parent9b0f9c876529696c8008dda8b3606e34d3fe98dc (diff)
feat: update to TypeScript 4.0 (#6514)
Diffstat (limited to 'std/node/_fs/_fs_access.ts')
-rw-r--r--std/node/_fs/_fs_access.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/node/_fs/_fs_access.ts b/std/node/_fs/_fs_access.ts
index df84eac9c..8fb8cc7e6 100644
--- a/std/node/_fs/_fs_access.ts
+++ b/std/node/_fs/_fs_access.ts
@@ -8,9 +8,9 @@ import { notImplemented } from "../_utils.ts";
//TODO - 'path' can also be a Buffer. Neither of these polyfills
//is available yet. See https://github.com/denoland/deno/issues/3403
export function access(
- path: string | URL, // eslint-disable-line @typescript-eslint/no-unused-vars
- modeOrCallback: number | Function, // eslint-disable-line @typescript-eslint/no-unused-vars
- callback?: CallbackWithError, // eslint-disable-line @typescript-eslint/no-unused-vars
+ _path: string | URL,
+ _modeOrCallback: number | ((...args: unknown[]) => void),
+ _callback?: CallbackWithError,
): void {
notImplemented("Not yet available");
}