summaryrefslogtreecommitdiff
path: root/ext/net/lib.deno_net.d.ts
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-09-11 09:14:50 +1000
committerGitHub <noreply@github.com>2024-09-11 01:14:50 +0200
commit4865ae13e1a637a86de1266f1f5147b6142872c6 (patch)
tree3c1ea1f29f5f5c8b854fba4de1ed504639c3472c /ext/net/lib.deno_net.d.ts
parentace1202227abeeac78db0266a13b451c1792a6ce (diff)
BREAKING(net): remove `Deno.[Tls]Listener.prototype.rid` (#25556)
Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'ext/net/lib.deno_net.d.ts')
-rw-r--r--ext/net/lib.deno_net.d.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/net/lib.deno_net.d.ts b/ext/net/lib.deno_net.d.ts
index f34fcb0fd..b66dcea8d 100644
--- a/ext/net/lib.deno_net.d.ts
+++ b/ext/net/lib.deno_net.d.ts
@@ -35,15 +35,6 @@ declare namespace Deno {
/** Return the address of the `Listener`. */
readonly addr: A;
- /**
- * Return the rid of the `Listener`.
- *
- * @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.
- */
- readonly rid: number;
-
[Symbol.asyncIterator](): AsyncIterableIterator<T>;
/**