UNPKG

423 BTypeScriptView Raw
1import { EndpointVariant } from "./EndpointVariant";
2/**
3 * The hash of partition with the information specific to that partition.
4 * The information includes the list of regions belonging to that partition,
5 * and the hostname to be used for the partition.
6 */
7export declare type PartitionHash = Record<string, {
8 regions: string[];
9 regionRegex: string;
10 variants: EndpointVariant[];
11 endpoint?: string;
12}>;