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>
16 lines
380 B
Text
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;
|
|
}
|