diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-05 16:22:47 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 16:22:47 +1000 |
commit | 713ed065e7cd1013e525a8e571cef08a30de87be (patch) | |
tree | 4237cb806c991d258d786d66afe99e291f5ec477 /cli/tsc/dts/lib.deno.ns.d.ts | |
parent | 0450c12df5deee18407b940ffedeb1a16bab35a1 (diff) |
BREAKING(fs): remove `Deno.File` (#25447)
Towards #22079
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index e47a2d942..319b1da45 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -2530,17 +2530,6 @@ declare namespace Deno { [Symbol.dispose](): void; } - /** - * The Deno abstraction for reading and writing files. - * - * @deprecated This will be removed in Deno 2.0. See the - * {@link https://docs.deno.com/runtime/manual/advanced/migrate_deprecations | Deno 1.x to 2.x Migration Guide} - * for migration instructions. - * - * @category File System - */ - export const File: typeof FsFile; - /** Gets the size of the console as columns/rows. * * ```ts |