Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.MakeTempOptions

interface MakeTempOptions {
dir?: string;
prefix?: string;
suffix?: string;
}

§Properties

§
dir?: string
[src]

Directory where the temporary directory should be created (defaults to the env variable TMPDIR, or the system's default, usually /tmp).

Note that if the passed dir is relative, the path returned by makeTempFile() and makeTempDir() will also be relative. Be mindful of this when changing working directory.

§
prefix?: string
[src]

String that should precede the random portion of the temporary directory's name.

§
suffix?: string
[src]

String that should follow the random portion of the temporary directory's name.