* Ajout de création de fichier .ods * Ajout d'un outil pour créer un fichier .ods + rajout de styles.xml et meta.xml pour peut-être plaire à LibreOffice * Créer des fichiers considérés corrompus-mais-réparables LibreOffice * Creating libre-office-validated ods files * readme with ods creation
13 lines
390 B
JavaScript
13 lines
390 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 */
|
|
|
|
export {} |