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.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 54b328196..98cae94a4 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -942,23 +942,6 @@ declare namespace Deno {
/** **UNSTABLE**: New API, yet to be vetted.
*
- * Get the `hostname` of the machine the Deno process is running on.
- *
- * ```ts
- * console.log(Deno.hostname());
- * ```
- *
- * Requires `allow-sys` permission.
- * Additional consideration is still necessary around the permissions
- * required.
- *
- * @tags allow-sys
- * @category Runtime Environment
- */
- export function hostname(): string;
-
- /** **UNSTABLE**: New API, yet to be vetted.
- *
* A custom HttpClient for use with `fetch`.
*
* ```ts