forked from sheetjs/sheetjs
SheetJS
51182e57ef
- xlsx.njs use dense mode by default - CSV Streaming output for nodejs - XLSX/XLSB error on password protected documents - record hoppers switch on record number rather than name
20 lines
443 B
JavaScript
20 lines
443 B
JavaScript
/*::
|
|
declare type Block = any;
|
|
declare type BufArray = {
|
|
newblk(sz:number):Block;
|
|
next(sz:number):Block;
|
|
end():any;
|
|
push(buf:Block):void;
|
|
};
|
|
|
|
type RecordHopperCB = {(d:any, Rn:string, RT:number):?boolean;};
|
|
|
|
type EvertType = {[string]:string};
|
|
type EvertNumType = {[string]:number};
|
|
type EvertArrType = {[string]:Array<string>};
|
|
|
|
type StringConv = {(string):string};
|
|
|
|
type WriteObjStrFactory = {from_sheet(ws:Worksheet, o:any):string};
|
|
*/
|