mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 23:34:47 -05:00
docs: fix doc to remove annotation about removed function Deno.dir
(#8732)
This commit is contained in:
parent
c05615d670
commit
93cd9ab0b8
1 changed files with 2 additions and 2 deletions
4
cli/dts/lib.deno.ns.d.ts
vendored
4
cli/dts/lib.deno.ns.d.ts
vendored
|
@ -1079,7 +1079,7 @@ declare namespace Deno {
|
||||||
export function makeTempDir(options?: MakeTempOptions): Promise<string>;
|
export function makeTempDir(options?: MakeTempOptions): Promise<string>;
|
||||||
|
|
||||||
/** Synchronously creates a new temporary file in the default directory for
|
/** Synchronously creates a new temporary file in the default directory for
|
||||||
* temporary files (see also `Deno.dir("temp")`), unless `dir` is specified.
|
* temporary files, unless `dir` is specified.
|
||||||
* Other optional options include prefixing and suffixing the directory name
|
* Other optional options include prefixing and suffixing the directory name
|
||||||
* with `prefix` and `suffix` respectively.
|
* with `prefix` and `suffix` respectively.
|
||||||
*
|
*
|
||||||
|
@ -1098,7 +1098,7 @@ declare namespace Deno {
|
||||||
export function makeTempFileSync(options?: MakeTempOptions): string;
|
export function makeTempFileSync(options?: MakeTempOptions): string;
|
||||||
|
|
||||||
/** Creates a new temporary file in the default directory for temporary
|
/** Creates a new temporary file in the default directory for temporary
|
||||||
* files (see also `Deno.dir("temp")`), unless `dir` is specified. Other
|
* files, unless `dir` is specified. Other
|
||||||
* optional options include prefixing and suffixing the directory name with
|
* optional options include prefixing and suffixing the directory name with
|
||||||
* `prefix` and `suffix` respectively.
|
* `prefix` and `suffix` respectively.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue