Rocky_Mountain_Vending/.pnpm-store/v10/files/72/0f0d5c5952fe44a0e9a603716378285c0faf6adfd06b2dc5f2c2d1ed164bc66f294d67183072e2807c5c4cf9ebf55ed9c03364bc4a449e71a71589f7ba0117
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

58 lines
1.5 KiB
Text

import { ChecksumConstructor } from "../checksum";
import { HashConstructor } from "../crypto";
/**
* @internal
*/
export declare enum AlgorithmId {
MD5 = "md5",
CRC32 = "crc32",
CRC32C = "crc32c",
SHA1 = "sha1",
SHA256 = "sha256"
}
/**
* @internal
*/
export interface ChecksumAlgorithm {
algorithmId(): AlgorithmId;
checksumConstructor(): ChecksumConstructor | HashConstructor;
}
/**
* @deprecated unused.
* @internal
*/
type ChecksumConfigurationLegacy = {
[other in string | number]: any;
};
/**
* @internal
*/
export interface ChecksumConfiguration extends ChecksumConfigurationLegacy {
addChecksumAlgorithm(algo: ChecksumAlgorithm): void;
checksumAlgorithms(): ChecksumAlgorithm[];
}
/**
* @deprecated will be removed for implicit type.
* @internal
*/
type GetChecksumConfigurationType = (runtimeConfig: Partial<{
sha256: ChecksumConstructor | HashConstructor;
md5: ChecksumConstructor | HashConstructor;
}>) => ChecksumConfiguration;
/**
* @internal
* @deprecated will be moved to smithy-client.
*/
export declare const getChecksumConfiguration: GetChecksumConfigurationType;
/**
* @internal
* @deprecated will be removed for implicit type.
*/
type ResolveChecksumRuntimeConfigType = (clientConfig: ChecksumConfiguration) => any;
/**
* @internal
*
* @deprecated will be moved to smithy-client.
*/
export declare const resolveChecksumRuntimeConfig: ResolveChecksumRuntimeConfigType;
export {};