summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts
index 0ac829463..6fbd13f5f 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -791,6 +791,14 @@ declare namespace Deno {
mtime: number | Date,
): Promise<void>;
+ export function run<
+ T extends RunOptions & {
+ clearEnv?: boolean;
+ } = RunOptions & {
+ clearEnv?: boolean;
+ },
+ >(opt: T): Process<T>;
+
/** **UNSTABLE**: The `signo` argument may change to require the Deno.Signal
* enum.
*