Rocky_Mountain_Vending/.pnpm-store/v10/files/54/d06f2bde027f4eaca31905ab106aabbfa4dbc74a29b244623ac80abd8e01d807a52796a6c6551946c5be963579b235afaafa3214146dce4ff05c1548766ca0
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

38 lines
1.1 KiB
Text

import { EndpointPartition } from "@smithy/types";
export type PartitionsInfo = {
partitions: Array<{
id: string;
outputs: {
dnsSuffix: string;
dualStackDnsSuffix: string;
name: string;
supportsDualStack: boolean;
supportsFIPS: boolean;
};
regionRegex: string;
regions: Record<string, {
description?: string;
} | undefined>;
}>;
};
/**
* Evaluates a single string argument value as a region, and matches the
* string value to an AWS partition.
* The matcher MUST always return a successful object describing the partition
* that the region has been determined to be a part of.
*/
export declare const partition: (value: string) => EndpointPartition;
/**
* Set custom partitions.json data.
* @internal
*/
export declare const setPartitionInfo: (partitionsInfo: PartitionsInfo, userAgentPrefix?: string) => void;
/**
* Reset to the default partitions.json data.
* @internal
*/
export declare const useDefaultPartitionInfo: () => void;
/**
* @internal
*/
export declare const getUserAgentPrefix: () => string;