summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2022-09-27 22:11:11 +0200
committerGitHub <noreply@github.com>2022-09-27 22:11:11 +0200
commita344368603063bcb281e743f3810ca1e4e46e85d (patch)
treeb1f01e491d648673b8d77ece48e200f66e09c2ed /cli/dts/lib.deno.unstable.d.ts
parent980d65b4d0f26a841230acd662a1dcb3cf9c0247 (diff)
feat: Stabilize Deno.refTimer() and Deno.unrefTimer() APIs (#16036)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts
index 49e02d375..ec87fa9ca 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -1383,22 +1383,6 @@ declare namespace Deno {
/** **UNSTABLE**: New API, yet to be vetted.
*
- * Make the timer of the given id blocking the event loop from finishing.
- *
- * @category Timers
- */
- export function refTimer(id: number): void;
-
- /** **UNSTABLE**: New API, yet to be vetted.
- *
- * Make the timer of the given id not blocking the event loop from finishing.
- *
- * @category Timers
- */
- export function unrefTimer(id: number): void;
-
- /** **UNSTABLE**: New API, yet to be vetted.
- *
* A handler for HTTP requests. Consumes a request and returns a response.
*
* If a handler throws, the server calling the handler will assume the impact