diff options
author | Leo K <crowlkats@toaxl.com> | 2021-09-13 19:26:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-13 19:26:23 +0200 |
commit | a655a0f3e4201840eda94938fc8d6222c2b94a99 (patch) | |
tree | 9b065e3e2e4fcfd7f59ef004e2cd2bc2b6c785de /cli/dts/lib.deno.unstable.d.ts | |
parent | 274ff6c469656bfe527fa644c24dfecc79e90ce4 (diff) |
feat(unstable): allow specifing gid and uid for subprocess (#11586)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 4 |
1 files changed, 4 insertions, 0 deletions
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<T>; |