Type Alias: XtlErrorCode
type XtlErrorCode =
| "xl3/config/source-table-removed"
| "xl3/config/invalid-source-table"
| "xl3/inputs/missing-required"
| "xl3/inputs/parse-number"
| "xl3/inputs/parse-date"
| "xl3/inputs/select-option"
| "xl3/inputs/duplicate-name"
| "xl3/inputs/invalid-name"
| "xl3/inputs/invalid-type"
| "xl3/inputs/conflict-config"
| "xl3/inputs/missing-header"
| "xl3/inputs/missing-options"
| "xl3/source/undeclared"
| "xl3/source/sheet-missing"
| "xl3/source/duplicate-name"
| "xl3/source/invalid-name"
| "xl3/source/missing-header"
| "xl3/source/missing-required"
| "xl3/source/row-cross-block"
| "xl3/source/unknown-column"
| "xl3/source/reserved-column-name"
| "xl3/sources/not-a-dictionary"
| "xl3/sheet/reserved-name"
| "xl3/sheet/duplicate-list-name"
| "xl3/join/undeclared-source"
| "xl3/join/bad-on-clause"
| "xl3/directive/invalid-syntax"
| "xl3/lists/missing-reference"
| "xl3/parser/empty-block"
| "xl3/eval/operand-coercion"
| "xl3/eval/arity-mismatch"
| "xl3/eval/unsupported-syntax"
| "xl3/cell/numfmt-coercion"
| "xl3/cell/row-outside-repeat"
| "xl3/cell/formula-no-cache"
| "xl3/xlookup/no-match"
| "xl3/xlookup/source-mismatch"
| "xl3/xlookup/bare-bracket"
| "xl3/filename/empty"
| "xl3/filename/too-long"
| "xl3/filename/collision";
Defined in: src/error-codes.ts:5