diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-03 18:39:37 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 18:39:37 +1000 |
commit | 9bf10aa1e08ba071092b11fd60670e4a0fcb5491 (patch) | |
tree | cee83a9dd158624732911d088b864730a538ea00 /cli/tsc/dts | |
parent | 1f51b5310f85ad28f2d00ce223c59ff0be9619d0 (diff) |
chore(fs): remove `Deno.flock[Sync]()` (#25350)
Towards #22079
Diffstat (limited to 'cli/tsc/dts')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 747ce5a7f..64ee74b84 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -1218,26 +1218,6 @@ declare namespace Deno { /** **UNSTABLE**: New API, yet to be vetted. * - * Acquire an advisory file-system lock for the provided file. - * - * @param [exclusive=false] - * @category File System - * @experimental - */ - export function flock(rid: number, exclusive?: boolean): Promise<void>; - - /** **UNSTABLE**: New API, yet to be vetted. - * - * Acquire an advisory file-system lock synchronously for the provided file. - * - * @param [exclusive=false] - * @category File System - * @experimental - */ - export function flockSync(rid: number, exclusive?: boolean): void; - - /** **UNSTABLE**: New API, yet to be vetted. - * * Release an advisory file-system lock for the provided file. * * @category File System |