sheetjs/bits/09_types.js

9 lines
122 B
JavaScript

/*::
declare type Block = any;
declare type BufArray = {
next(sz:number):Block;
end():any;
push(buf:Block):void;
};
*/