Skip to content

@jsvision/ui / EditorDialogResult

Type Alias: EditorDialogResult

EditorDialogResult = { kind: "find"; rec: FindRec | null; } | { kind: "replace"; rec: ReplaceRec | null; } | { answer: "yes" | "no" | "cancel"; kind: "confirm"; } | { kind: "path"; path: string | null; } | { kind: "ok"; }

Defined in: ui/src/editor/editor-dialog.ts:51

The handler's typed answer, matched to the request kind.