diff options
author | Colin Ihrig <cjihrig@gmail.com> | 2022-10-26 16:37:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 16:37:48 -0400 |
commit | 37340e23865b17b1466a7e32997b0add96dd3806 (patch) | |
tree | 4e72b47e33d2cff14a8b62231a9fa0555e8492a0 /cli/dts/lib.deno.ns.d.ts | |
parent | f4f1f4f0b64030b744cfb43693af321ea8332bf4 (diff) |
chore(unstable): rename Deno.getUid() and Deno.getGid() (#16432)
This commit renames `Deno.getUid()` to `Deno.uid()` and renames
`Deno.getGid()` to `Deno.gid()`.
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 518b81edd..f9baddb06 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -3762,8 +3762,8 @@ declare namespace Deno { | "systemMemoryInfo" | "networkInterfaces" | "osRelease" - | "getUid" - | "getGid"; + | "uid" + | "gid"; } /** The permission descriptor for the `allow-ffi` permissions, which controls |