diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2022-06-13 15:28:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 21:28:00 +0200 |
commit | 21dfeea3c48cf6101d71b39a1d2b0f9406818300 (patch) | |
tree | 0ef0627159ad366d1755081247776b9759b14017 /cli/dts/lib.deno.unstable.d.ts | |
parent | e6218d9d23f71fe5c42dbd76d3016b147892b476 (diff) |
Remove unstable Deno.sleepSync (#14719)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 12f53b784..7ebd80422 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -753,17 +753,6 @@ declare namespace Deno { /** **UNSTABLE**: new API, yet to be vetted. * - * SleepSync puts the main thread to sleep synchronously for a given amount of - * time in milliseconds. - * - * ```ts - * Deno.sleepSync(10); - * ``` - */ - export function sleepSync(millis: number): void; - - /** **UNSTABLE**: new API, yet to be vetted. - * * A generic transport listener for message-oriented protocols. */ export interface DatagramConn extends AsyncIterable<[Uint8Array, Addr]> { /** **UNSTABLE**: new API, yet to be vetted. |