BREAKING(fs): remove Deno.File (#25447)

Towards #22079
This commit is contained in:
Asher Gomez 2024-09-05 16:22:47 +10:00 committed by GitHub
parent 0450c12df5
commit 713ed065e7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 0 additions and 21 deletions

View file

@ -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