diff options
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index c6b9df222..21b47a466 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -2682,27 +2682,23 @@ declare namespace Deno { * ``` */ setRaw(mode: boolean, options?: SetRawOptions): void; - /** **UNSTABLE**: New API, yet to be vetted. - * + /** * Acquire an advisory file-system lock for the file. * * @param [exclusive=false] */ lock(exclusive?: boolean): Promise<void>; - /** **UNSTABLE**: New API, yet to be vetted. - * + /** * Synchronously acquire an advisory file-system lock synchronously for the file. * * @param [exclusive=false] */ lockSync(exclusive?: boolean): void; - /** **UNSTABLE**: New API, yet to be vetted. - * + /** * Release an advisory file-system lock for the file. */ unlock(): Promise<void>; - /** **UNSTABLE**: New API, yet to be vetted. - * + /** * Synchronously release an advisory file-system lock for the file. */ unlockSync(): void; |