TeaSpeak-Client/imports/shared-app/crypto/crc32.d.ts

8 lines
179 B
TypeScript

export declare class Crc32 {
private static readonly lookup;
private crc;
constructor();
update(data: ArrayBufferLike): void;
digest(radix: number): string;
}