Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ayonli_jsext/lib.deno.d.ts>Deno.FsEvent

A JavaScript extension package for building strong and modern applications.
Latest
interface Deno.FsEvent
import { type Deno } from "https://deno.land/x/ayonli_jsext@v0.9.72/lib.deno.d.ts";
const { FsEvent } = Deno;

Represents a unique file system event yielded by a Deno.FsWatcher.

Properties

kind:
| "any"
| "access"
| "create"
| "modify"
| "remove"
| "other"

The kind/type of the file system event.

paths: string[]

An array of paths that are associated with the file system event.

optional
flag: FsEventFlag

Any additional flags associated with the event.