summaryrefslogtreecommitdiff
path: root/cli/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/dts/lib.deno.ns.d.ts26
1 files changed, 0 insertions, 26 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts
index 05e600ed7..054f3b385 100644
--- a/cli/dts/lib.deno.ns.d.ts
+++ b/cli/dts/lib.deno.ns.d.ts
@@ -786,32 +786,6 @@ declare namespace Deno {
*/
export function fdatasync(rid: number): Promise<void>;
- /** **UNSTABLE**: New API should be tested first.
- *
- * Acquire an advisory file-system lock for the provided file. `exclusive`
- * defaults to `false`.
- */
- export function flock(rid: number, exclusive?: boolean): Promise<void>;
-
- /** **UNSTABLE**: New API should be tested first.
- *
- * Acquire an advisory file-system lock for the provided file. `exclusive`
- * defaults to `false`.
- */
- export function flockSync(rid: number, exclusive?: boolean): void;
-
- /** **UNSTABLE**: New API should be tested first.
- *
- * Release an advisory file-system lock for the provided file.
- */
- export function funlock(rid: number): Promise<void>;
-
- /** **UNSTABLE**: New API should be tested first.
- *
- * Release an advisory file-system lock for the provided file.
- */
- export function funlockSync(rid: number): void;
-
/** Close the given resource ID (rid) which has been previously opened, such
* as via opening or creating a file. Closing a file when you are finished
* with it is important to avoid leaking resources.