mirror of
https://github.com/SheetJS/sheetjs.git
synced 2026-01-18 14:18:13 +00:00
19 lines
375 B
JavaScript
19 lines
375 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};
|
|
|
|
*/
|