mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 12:49:10 +00:00
BREAKING: Remove deprecated mkdir, mkdirSync APIs (#4615)
This commit is contained in:
parent
71ac552249
commit
2becae884e
2 changed files with 10 additions and 40 deletions
14
cli/js/lib.deno.ns.d.ts
vendored
14
cli/js/lib.deno.ns.d.ts
vendored
|
@ -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). */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue