summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-09-17 07:57:53 +1000
committerGitHub <noreply@github.com>2024-09-17 07:57:53 +1000
commit51d926ac30413a6747505b3f248f43a563470545 (patch)
treed44723e47ccfe8a6a386f910079aca88f1bb3cf9 /cli/tsc
parent8fe90d286160d6cc585e18b1a2f4e29bd1523852 (diff)
chore(fs): undeprecate `Deno.FsWatcher.prototype.return()` (#25623)
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts
index d27fc380d..f44bf9a02 100644
--- a/cli/tsc/dts/lib.deno.ns.d.ts
+++ b/cli/tsc/dts/lib.deno.ns.d.ts
@@ -3484,10 +3484,6 @@ declare namespace Deno {
close(): void;
/**
* Stops watching the file system and closes the watcher resource.
- *
- * @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.
*/
return?(value?: any): Promise<IteratorResult<FsEvent>>;
[Symbol.asyncIterator](): AsyncIterableIterator<FsEvent>;