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>
19 lines
663 B
Text
19 lines
663 B
Text
import type { RegionInfo } from "@smithy/types";
|
|
import type { PartitionHash } from "./PartitionHash";
|
|
import type { RegionHash } from "./RegionHash";
|
|
/**
|
|
* @internal
|
|
* @deprecated unused as of endpointsRuleSets.
|
|
*/
|
|
export interface GetRegionInfoOptions {
|
|
useFipsEndpoint?: boolean;
|
|
useDualstackEndpoint?: boolean;
|
|
signingService: string;
|
|
regionHash: RegionHash;
|
|
partitionHash: PartitionHash;
|
|
}
|
|
/**
|
|
* @internal
|
|
* @deprecated unused as of endpointsRuleSets.
|
|
*/
|
|
export declare const getRegionInfo: (region: string, { useFipsEndpoint, useDualstackEndpoint, signingService, regionHash, partitionHash, }: GetRegionInfoOptions) => RegionInfo;
|