diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-05-23 09:17:00 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 09:17:00 +1000 |
commit | 4908d457580505d426ca06437a4f3b04731c5f24 (patch) | |
tree | 141dbadde494c2ff3d4e6164a667751a1f3c9a99 /cli/tsc/dts/lib.deno.ns.d.ts | |
parent | 8ea9370c55b01cc569289002b798886933f6a905 (diff) |
feat(ext/fs): stabilize `Deno.FsFile.unlock[Sync]()` and `Deno.FsFile.lock[Sync]()` (#23754)
Related #22230
CC @dyedgreen
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-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; |