From 5bac4075c38c34ba53ce86e8ce6912d3be38c4bb Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Sat, 7 Sep 2024 08:37:35 +1000 Subject: chore: soft-remove `Deno.{stdin,stderr,stdout}.rid` (#25479) Towards #22079 --- cli/tsc/dts/lib.deno.ns.d.ts | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'cli/tsc/dts/lib.deno.ns.d.ts') diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 077d00b9e..320e6f29b 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -2468,15 +2468,6 @@ declare namespace Deno { * @category I/O */ export const stdin: Reader & ReaderSync & Closer & { - /** - * The resource ID assigned to `stdin`. This can be used with the discrete - * I/O functions in the `Deno` namespace. - * - * @deprecated This will be soft-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. - */ - readonly rid: number; /** A readable stream interface to `stdin`. */ readonly readable: ReadableStream; /** @@ -2516,15 +2507,6 @@ declare namespace Deno { * @category I/O */ export const stdout: Writer & WriterSync & Closer & { - /** - * The resource ID assigned to `stdout`. This can be used with the discrete - * I/O functions in the `Deno` namespace. - * - * @deprecated This will be soft-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. - */ - readonly rid: number; /** A writable stream interface to `stdout`. */ readonly writable: WritableStream; /** @@ -2550,15 +2532,6 @@ declare namespace Deno { * @category I/O */ export const stderr: Writer & WriterSync & Closer & { - /** - * The resource ID assigned to `stderr`. This can be used with the discrete - * I/O functions in the `Deno` namespace. - * - * @deprecated This will be soft-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. - */ - readonly rid: number; /** A writable stream interface to `stderr`. */ readonly writable: WritableStream; /** -- cgit v1.2.3