mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 23:34:47 -05:00
fix(docs): remove Deno.dir (#7144)
This commit is contained in:
parent
cf603be24c
commit
9eca347f73
1 changed files with 6 additions and 6 deletions
12
cli/dts/lib.deno.ns.d.ts
vendored
12
cli/dts/lib.deno.ns.d.ts
vendored
|
@ -993,9 +993,9 @@ declare namespace Deno {
|
|||
}
|
||||
|
||||
/** Synchronously creates a new temporary directory in the default directory
|
||||
* for temporary files (see also `Deno.dir("temp")`), unless `dir` is specified.
|
||||
* Other optional options include prefixing and suffixing the directory name
|
||||
* with `prefix` and `suffix` respectively.
|
||||
* for temporary files, unless `dir` is specified. Other optional options
|
||||
* include prefixing and suffixing the directory name with `prefix` and
|
||||
* `suffix` respectively.
|
||||
*
|
||||
* The full path to the newly created directory is returned.
|
||||
*
|
||||
|
@ -1013,9 +1013,9 @@ declare namespace Deno {
|
|||
export function makeTempDirSync(options?: MakeTempOptions): string;
|
||||
|
||||
/** Creates a new temporary directory in the default directory for temporary
|
||||
* files (see also `Deno.dir("temp")`), unless `dir` is specified. Other
|
||||
* optional options include prefixing and suffixing the directory name with
|
||||
* `prefix` and `suffix` respectively.
|
||||
* files, unless `dir` is specified. Other optional options include
|
||||
* prefixing and suffixing the directory name with `prefix` and `suffix`
|
||||
* respectively.
|
||||
*
|
||||
* This call resolves to the full path to the newly created directory.
|
||||
*
|
||||
|
|
Loading…
Reference in a new issue