11 lines
379 B
JavaScript
11 lines
379 B
JavaScript
|
|
|
||
|
|
/**
|
||
|
|
* @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 */
|
||
|
|
|
||
|
|
/** @typedef {string} SheetName */
|