Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/cli/dts/lib.deno.ns.d.ts>Deno.FsWatcher

A modern runtime for JavaScript and TypeScript.
Go to Latest
interface Deno.FsWatcher
implements AsyncIterable<FsEvent>
import { type Deno } from "https://deno.land/x/deno@v1.28.1/cli/dts/lib.deno.ns.d.ts";
const { FsWatcher } = Deno;

Returned by Deno.watchFs. It is an async iterator yielding up system events. To stop watching the file system by calling .close() method.

Properties

readonly
rid: number

The resource id.

Methods

close(): void

Stops watching the file system and closes the watcher resource.

optional
deprecated
return(value?: any): Promise<IteratorResult<FsEvent>>

Stops watching the file system and closes the watcher resource.

[[Symbol.asyncIterator]](): AsyncIterableIterator<FsEvent>