13 lines
273 B
JavaScript
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;
|
|
};
|
|
*/
|