summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-09-07 08:37:35 +1000
committerGitHub <noreply@github.com>2024-09-07 08:37:35 +1000
commit5bac4075c38c34ba53ce86e8ce6912d3be38c4bb (patch)
treee01bc5bd1d19f21b388244c4821718b3c9d34933 /cli/tsc/dts/lib.deno.ns.d.ts
parent292344af42cbeaf6698c7f2cedf2e7e1ce861544 (diff)
chore: soft-remove `Deno.{stdin,stderr,stdout}.rid` (#25479)
Towards #22079
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts27
1 files changed, 0 insertions, 27 deletions
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<Uint8Array>;
/**
@@ -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<Uint8Array>;
/**
@@ -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<Uint8Array>;
/**