2016-06-16 20:49:46 +00:00
|
|
|
/*::
|
|
|
|
type ArrayLike = any;
|
|
|
|
type Stringifier = {(d:ArrayLike):string};
|
|
|
|
|
|
|
|
declare class CRC32Module {
|
|
|
|
table:CRC32TableType;
|
2016-10-08 18:48:03 +00:00
|
|
|
bstr(s:string, seed:?CRC32Type):CRC32Type;
|
|
|
|
buf(b:ABuf, seed:?CRC32Type):CRC32Type;
|
|
|
|
str(s:string, seed:?CRC32Type):CRC32Type;
|
|
|
|
version:string;
|
2016-06-16 20:49:46 +00:00
|
|
|
};
|
|
|
|
*/
|