diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-01-20 16:32:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 16:32:55 +0100 |
commit | da23f7f8763cab90fbbf37d9c7cddf3758d7d364 (patch) | |
tree | ca96f1228b1d0986124cf54d949baf19418e3937 /cli/tsc/dts/lib.deno.unstable.d.ts | |
parent | c230a955518eef34af04fffad92ec915f29a58bd (diff) |
feat: Stabilize Deno.Listener.ref/unref (#17477)
Diffstat (limited to 'cli/tsc/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index e3ae8f46f..7ca089108 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -1082,23 +1082,6 @@ declare namespace Deno { alpnProtocols?: string[]; } - /** @category Network */ - export interface Listener extends AsyncIterable<Conn> { - /** **UNSTABLE**: New API, yet to be vetted. - * - * Make the listener block the event loop from finishing. - * - * Note: the listener blocks the event loop from finishing by default. - * This method is only meaningful after `.unref()` is called. - */ - ref(): void; - /** **UNSTABLE**: New API, yet to be vetted. - * - * Make the listener not block the event loop from finishing. - */ - unref(): void; - } - /** **UNSTABLE**: New API, yet to be vetted. * * Acquire an advisory file-system lock for the provided file. |