Rocky_Mountain_Vending/.pnpm-store/v10/files/2a/477f91d33ab873a813e1d4b7a467619f8b2557b96ffd2537edd4f4a71e8cb1e1809ad72aabc0bfec39c71eacf2d61748f82796b83e48875fac19c2d41d0535
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.4 KiB
Text

import type { ChecksumConstructor } from "../checksum";
import type { 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 {};