21 lines
514 B
JavaScript
21 lines
514 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 */
|
|
|
|
/**
|
|
* @typedef OdfjsImage
|
|
* @prop {ArrayBuffer} content
|
|
* @prop {string} fileName
|
|
* @prop {string} mediaType
|
|
*
|
|
*/
|
|
|
|
export {} |