Skip to content
Sheetwrite

Sheetwrite / Documentation

DocumentValidationResult@sheetwrite/core

Success or structured errors returned by document validation.

Success or structured errors returned by document validation.

Variants 2

{ ok: true; value: WorkbookSnapshot }
{ ok: false; errors: DocumentValidationError[] }

Declaration

View full TypeScript declaration
export type DocumentValidationResult =
| {
ok: true;
value: WorkbookSnapshot;
}
| {
ok: false;
errors: DocumentValidationError[];
};