BREAKING(fs): remove Deno.FsWatcher.prototype.rid (#25444)

Towards #22079
This commit is contained in:
Asher Gomez 2024-09-05 16:23:28 +10:00 committed by GitHub
parent 713ed065e7
commit 105c2e336a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 0 additions and 22 deletions

View file

@ -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;
/**