js-crc32/misc/flow.js
SheetJS 1045f4f8e8 version bump 1.0.0: rolling checksums
- browser tests work in IE6+
- miscellaneous adjustments to tooling
2016-10-08 15:26:03 -04:00

13 lines
273 B
JavaScript

/*::
type ArrayLike = any;
type Stringifier = {(d:ArrayLike):string};
declare class CRC32Module {
table:CRC32TableType;
bstr(s:string, seed:?CRC32Type):CRC32Type;
buf(b:ABuf, seed:?CRC32Type):CRC32Type;
str(s:string, seed:?CRC32Type):CRC32Type;
version:string;
};
*/