diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-05 16:23:28 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 16:23:28 +1000 |
commit | 105c2e336a4312ed1714ab893c57eae2a19068c7 (patch) | |
tree | e472cdf21fe7cc7ee4f9a0b02503ac1228af3bef /cli/tsc | |
parent | 713ed065e7cd1013e525a8e571cef08a30de87be (diff) |
BREAKING(fs): remove `Deno.FsWatcher.prototype.rid` (#25444)
Towards #22079
Diffstat (limited to 'cli/tsc')
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 319b1da45..cc6a1d4a8 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -3849,14 +3849,6 @@ declare namespace Deno { * @category File System */ export interface FsWatcher extends AsyncIterable<FsEvent>, Disposable { - /** - * The resource id. - * - * @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; /** Stops watching the file system and closes the watcher resource. */ close(): void; /** |