Skip to content
Sheetwrite

Sheetwrite / Documentation

SheetwriteErrorContextValue@sheetwrite/core

JSON-safe values accepted in a public failure context.

JSON-safe values accepted in a public failure context.

Variants 6

null
string
number
boolean
readonly SheetwriteErrorContextValue[]
{ readonly [key: string]: SheetwriteErrorContextValue }

Declaration

View full TypeScript declaration
export type SheetwriteErrorContextValue =
| null
| string
| number
| boolean
| readonly SheetwriteErrorContextValue[]
| {
readonly [key: string]: SheetwriteErrorContextValue;
};