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>
24 lines
936 B
Text
24 lines
936 B
Text
import type { ChecksumAlgorithm, ChecksumConfiguration, ChecksumConstructor, HashConstructor } from "@smithy/types";
|
|
import { AlgorithmId } from "@smithy/types";
|
|
export { AlgorithmId, ChecksumAlgorithm, ChecksumConfiguration };
|
|
/**
|
|
* @internal
|
|
*/
|
|
export type PartialChecksumRuntimeConfigType = Partial<{
|
|
sha256: ChecksumConstructor | HashConstructor;
|
|
md5: ChecksumConstructor | HashConstructor;
|
|
crc32: ChecksumConstructor | HashConstructor;
|
|
crc32c: ChecksumConstructor | HashConstructor;
|
|
sha1: ChecksumConstructor | HashConstructor;
|
|
}>;
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const getChecksumConfiguration: (runtimeConfig: PartialChecksumRuntimeConfigType) => {
|
|
addChecksumAlgorithm(algo: ChecksumAlgorithm): void;
|
|
checksumAlgorithms(): ChecksumAlgorithm[];
|
|
};
|
|
/**
|
|
* @internal
|
|
*/
|
|
export declare const resolveChecksumRuntimeConfig: (clientConfig: ChecksumConfiguration) => PartialChecksumRuntimeConfigType;
|