Rocky_Mountain_Vending/.pnpm-store/v10/files/58/d64c3b58c8195412f97624080391358d796bba709510fee410fcb31a81019ddcc5bcdf3a62083693c5ef63e2d9ce0835a3ed47a4d853b2c9de86619e073282
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

16 lines
380 B
Text

import type { Checksum, SourceData } from "@smithy/types";
/**
* @internal
*/
export declare class Md5 implements Checksum {
private state;
private buffer;
private bufferLength;
private bytesHashed;
private finished;
constructor();
update(sourceData: SourceData): void;
digest(): Promise<Uint8Array>;
private hashBuffer;
reset(): void;
}