diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-03 18:35:54 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-03 18:35:54 +1000 |
commit | 45c1737531be882947e2f62038c0b72fbac921e3 (patch) | |
tree | 4dc3336a5d6bc74b7b5190ba49e771fd00d9ff20 /cli/tsc/dts/lib.deno.ns.d.ts | |
parent | 259752537f5c81101c47a547ae345f0863235cf6 (diff) |
BREAKING(io): remove `Deno.iter[Sync]()` (#25346)
Towards #22079
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 3ec06bf0b..8d9384580 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -1863,36 +1863,6 @@ declare namespace Deno { options?: { bufSize?: number }, ): Promise<number>; - /** - * Turns a Reader, `r`, into an async iterator. - * - * @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 I/O - */ - export function iter( - r: Reader, - options?: { bufSize?: number }, - ): AsyncIterableIterator<Uint8Array>; - - /** - * Turns a ReaderSync, `r`, into an iterator. - * - * @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 I/O - */ - export function iterSync( - r: ReaderSync, - options?: { - bufSize?: number; - }, - ): IterableIterator<Uint8Array>; - /** Open a file and resolve to an instance of {@linkcode Deno.FsFile}. The * file does not need to previously exist if using the `create` or `createNew` * open options. The caller may have the resulting file automatically closed |