Skip to content
Sheetwrite

Sheetwrite / Documentation

WorkbookTableNameValidationResult@sheetwrite/core

Result of validating and NFC-normalizing a workbook table name.

Result of validating and NFC-normalizing a workbook table name.

Variants 2

{ ok: true; name: string }
{ ok: false; code: WorkbookTableNameIssueCode }

Declaration

View full TypeScript declaration
export type WorkbookTableNameValidationResult =
| {
ok: true;
name: string;
}
| {
ok: false;
code: WorkbookTableNameIssueCode;
};