forked from sheetjs/sheetjs
SheetJS
b9dae134f2
- UTF-16 Unicode Text (TXT) write - Lotus Formatted Text (PRN) read/write - DBF version 2 field length adjustments - throw errors if SheetNames is invalid (fixes #376 h/t @pietersv)
20 lines
439 B
JavaScript
20 lines
439 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, R:any, 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};
|
|
*/
|