summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-10-26 14:18:58 +0200
committerGitHub <noreply@github.com>2022-10-26 14:18:58 +0200
commit046ab7dc8aa9cc343bd7de2e5efc2e40d73e4998 (patch)
treef267e93632953d1b319669e69f31d54c39c0fb65 /cli/dts/lib.deno.unstable.d.ts
parent851db03a6eb25ef899437c1393745f7fe9d15585 (diff)
feat: Stabilize Deno.osRelease() API (#15973)
Closes https://github.com/denoland/deno/issues/15928
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts
index 416176564..ba6d03c7e 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -228,23 +228,6 @@ declare namespace Deno {
/** **UNSTABLE**: New API, yet to be vetted.
*
- * Returns the release version of the Operating System.
- *
- * ```ts
- * console.log(Deno.osRelease());
- * ```
- *
- * Requires `allow-sys` permission.
- * Under consideration to possibly move to Deno.build or Deno.versions and if
- * it should depend sys-info, which may not be desirable.
- *
- * @tags allow-sys
- * @category Runtime Environment
- */
- export function osRelease(): string;
-
- /** **UNSTABLE**: New API, yet to be vetted.
- *
* Displays the total amount of free and used physical and swap memory in the
* system, as well as the buffers and caches used by the kernel.
*