2024-06-18 11:06:41 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @typedef SheetCellRawContent
|
|
|
|
|
* @prop {string | null | undefined} value
|
|
|
|
|
* @prop {'float' | 'percentage' | 'currency' | 'date' | 'time' | 'boolean' | 'string' | 'b' | 'd' | 'e' | 'inlineStr' | 'n' | 's' | 'str'} type
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** @typedef {SheetCellRawContent[]} SheetRowRawContent */
|
|
|
|
|
/** @typedef {SheetRowRawContent[]} SheetRawContent */
|
|
|
|
|
|
2024-10-23 19:13:29 +02:00
|
|
|
/** @typedef {string} SheetName */
|
|
|
|
|
|
|
|
|
|
export {}
|