diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-05 21:23:37 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 11:23:37 +0000 |
commit | 7d95c5c062c7d836bab912e95587bf7fa52326c4 (patch) | |
tree | ef6ea1644324ad82545720af0d7480a316a2a45d /cli/tsc/dts | |
parent | c73b4a0877ca134a05262dc15524f54ff471cc3a (diff) |
BREAKING(fs): remove `Deno.funlock[Sync]()` (#25442)
Towards #22079
---------
Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'cli/tsc/dts')
-rw-r--r-- | cli/tsc/dts/lib.deno.unstable.d.ts | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cli/tsc/dts/lib.deno.unstable.d.ts b/cli/tsc/dts/lib.deno.unstable.d.ts index 9dee14f7f..a478b2e14 100644 --- a/cli/tsc/dts/lib.deno.unstable.d.ts +++ b/cli/tsc/dts/lib.deno.unstable.d.ts @@ -1132,24 +1132,6 @@ declare namespace Deno { /** **UNSTABLE**: New API, yet to be vetted. * - * Release an advisory file-system lock for the provided file. - * - * @category File System - * @experimental - */ - export function funlock(rid: number): Promise<void>; - - /** **UNSTABLE**: New API, yet to be vetted. - * - * Release an advisory file-system lock for the provided file synchronously. - * - * @category File System - * @experimental - */ - export function funlockSync(rid: number): void; - - /** **UNSTABLE**: New API, yet to be vetted. - * * Open a new {@linkcode Deno.Kv} connection to persist data. * * When a path is provided, the database will be persisted to disk at that |