forked from sheetjs/sheetjs
		
	- HTML output new preamble, <table> should not be in header/footer - XLS Built-In defined names translated to XLSX _xlnm form - README: streaming read strategies - If approximation error is sufficiently small, assume MDW is 6 - TS rename Utils type to XLSX$Utils (see #618)
		
			
				
	
	
		
			20 lines
		
	
	
		
			457 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			457 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, wb:?Workbook):string};
 | |
| */
 |