forked from sheetjs/sheetjs
9 lines
122 B
JavaScript
9 lines
122 B
JavaScript
|
/*::
|
||
|
declare type Block = any;
|
||
|
declare type BufArray = {
|
||
|
next(sz:number):Block;
|
||
|
end():any;
|
||
|
push(buf:Block):void;
|
||
|
};
|
||
|
*/
|