Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.FsEvent

interface FsEvent {
flag?: FsEventFlag;
kind:
| "any"
| "access"
| "create"
| "modify"
| "remove"
| "other";
paths: string[];
}

§Properties

§
kind: "any" | "access" | "create" | "modify" | "remove" | "other"
[src]
§
paths: string[]
[src]