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>
28 lines
726 B
Text
28 lines
726 B
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
|
|
>;
|
|
}>;
|
|
};
|
|
export declare const partition: (value: string) => EndpointPartition;
|
|
export declare const setPartitionInfo: (
|
|
partitionsInfo: PartitionsInfo,
|
|
userAgentPrefix?: string
|
|
) => void;
|
|
export declare const useDefaultPartitionInfo: () => void;
|
|
export declare const getUserAgentPrefix: () => string;
|