Rocky_Mountain_Vending/.pnpm-store/v10/files/e8/d43a8da6900a329c9d3f6b14c471df1ed0278ccb02a945ed544f1058fc0f9e7b3ccb6e8740a72fa284904fe66b0b8a012c44e5230cd9c477152a45db3993b1
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

7 lines
212 B
Text

export declare function crc32c(data: Uint8Array): number;
export declare class Crc32c {
private checksum;
update(data: Uint8Array): this;
digest(): number;
}
export { AwsCrc32c } from "./aws_crc32c";