Rocky_Mountain_Vending/.pnpm-store/v10/files/f5/f881521825ab25e19968e03eb10d73342df8a4e24a457e5421f4af5437998b5ab2f6b52033efd59a7e6317383fcf2381aa571420530e51e25630bcec0dd75e
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

11 lines
401 B
Text

import { Checksum, Hash } from "@smithy/types";
import { WritableOptions } from "stream";
import { Writable } from "stream";
/**
* @internal
*/
export declare class HashCalculator extends Writable {
readonly hash: Checksum | Hash;
constructor(hash: Checksum | Hash, options?: WritableOptions);
_write(chunk: Buffer, encoding: string, callback: (err?: Error) => void): void;
}