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 */
|
|
|
|
|
|
2025-08-04 18:51:04 +02:00
|
|
|
/**
|
|
|
|
|
* @typedef OdfjsImage
|
|
|
|
|
* @prop {ArrayBuffer} content
|
|
|
|
|
* @prop {string} fileName
|
|
|
|
|
* @prop {string} mediaType
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2024-10-23 19:13:29 +02:00
|
|
|
export {}
|