Skip to content

probe-web / @probe-web/client / index / DirectoryHandleLike

Interface: DirectoryHandleLike

Defined in: sources.ts:80

The parts of the File System Access directory handle API used here.

Properties

PropertyTypeDescriptionDefined in
namestringThe directory's name.sources.ts:82

Methods

values()

ts
values(): AsyncIterable<{
  kind: "file" | "directory";
  name: string;
} & Record<string, unknown>>;

Defined in: sources.ts:84

Its entries: files and subdirectories (as handles themselves).

Returns

AsyncIterable<{ kind: "file" | "directory"; name: string; } & Record<string, unknown>>