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>
11 lines
400 B
Text
11 lines
400 B
Text
import type { Checksum, Hash } from "@smithy/types";
|
|
import type { 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;
|
|
}
|