- sector checked before reading (h/t @e12009) See https://github.com/SheetJS/js-xlsx/issues/569 - flow type checking
11 lines
165 B
JavaScript
11 lines
165 B
JavaScript
/*::
|
|
declare var DO_NOT_EXPORT_CFB:any;
|
|
type SectorEntry = any;
|
|
type SectorList = {
|
|
(k:string|number):SectorEntry;
|
|
name:?string;
|
|
fat_addrs:any;
|
|
ssz:number;
|
|
}
|
|
*/
|