diff options
author | Chris Knight <cknight1234@gmail.com> | 2020-04-09 16:15:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 11:15:56 -0400 |
commit | 2becae884e36637448e2aa36f3c3f2c0af626942 (patch) | |
tree | 56c507e95374f021416b44d1f64fffc44e465a48 /cli/js/lib.deno.ns.d.ts | |
parent | 71ac552249cbded3823998d42cb2fcfd22b522d9 (diff) |
BREAKING: Remove deprecated mkdir, mkdirSync APIs (#4615)
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 3242ee280..ec4e0a06a 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -1043,13 +1043,6 @@ declare namespace Deno { * Requires `allow-write` permission. */ export function mkdirSync(path: string, options?: MkdirOptions): void; - /** @deprecated */ - export function mkdirSync( - path: string, - recursive?: boolean, - mode?: number - ): void; - /** Creates a new directory with the specified path. * * await Deno.mkdir("new_dir"); @@ -1061,13 +1054,6 @@ declare namespace Deno { * Requires `allow-write` permission. */ export function mkdir(path: string, options?: MkdirOptions): Promise<void>; - /** @deprecated */ - export function mkdir( - path: string, - recursive?: boolean, - mode?: number - ): Promise<void>; - export interface MakeTempOptions { /** Directory where the temporary directory should be created (defaults to * the env variable TMPDIR, or the system's default, usually /tmp). */ |