Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
355 B
Text
12 lines
355 B
Text
import { AwsCrc32 } from "@aws-crypto/crc32";
|
|
import { Checksum } from "@smithy/types";
|
|
declare class NodeCrc32 implements Checksum {
|
|
private checksum;
|
|
update(data: Uint8Array): void;
|
|
digest(): Promise<Uint8Array>;
|
|
reset(): void;
|
|
}
|
|
export declare const getCrc32ChecksumAlgorithmFunction: () =>
|
|
| typeof NodeCrc32
|
|
| typeof AwsCrc32;
|
|
export {};
|