Files
Media-Coding-Web/node_modules/@aws-crypto/crc32/build/main/index.d.ts
2026-04-04 12:49:09 +08:00

8 lines
208 B
TypeScript

export declare function crc32(data: Uint8Array): number;
export declare class Crc32 {
private checksum;
update(data: Uint8Array): this;
digest(): number;
}
export { AwsCrc32 } from "./aws_crc32";