From a655a0f3e4201840eda94938fc8d6222c2b94a99 Mon Sep 17 00:00:00 2001 From: Leo K Date: Mon, 13 Sep 2021 19:26:23 +0200 Subject: feat(unstable): allow specifing gid and uid for subprocess (#11586) --- cli/dts/lib.deno.unstable.d.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cli/dts/lib.deno.unstable.d.ts') diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 5854a5181..1a27f2b38 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -713,8 +713,12 @@ declare namespace Deno { export function run< T extends RunOptions & { clearEnv?: boolean; + gid?: number; + uid?: number; } = RunOptions & { clearEnv?: boolean; + gid?: number; + uid?: number; }, >(opt: T): Process; -- cgit v1.2.3