mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
24 lines
738 B
TypeScript
24 lines
738 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { sendSync, sendAsync } from "../dispatch_json.ts";
|
|
|
|
export interface MakeTempOptions {
|
|
dir?: string;
|
|
prefix?: string;
|
|
suffix?: string;
|
|
}
|
|
|
|
export function makeTempDirSync(options: MakeTempOptions = {}): string {
|
|
return sendSync("op_make_temp_dir", options);
|
|
}
|
|
|
|
export function makeTempDir(options: MakeTempOptions = {}): Promise<string> {
|
|
return sendAsync("op_make_temp_dir", options);
|
|
}
|
|
|
|
export function makeTempFileSync(options: MakeTempOptions = {}): string {
|
|
return sendSync("op_make_temp_file", options);
|
|
}
|
|
|
|
export function makeTempFile(options: MakeTempOptions = {}): Promise<string> {
|
|
return sendAsync("op_make_temp_file", options);
|
|
}
|