Rocky_Mountain_Vending/.pnpm-store/v10/files/de/97516e95be242da9fc6140348204162fb120247991459926a4b36665c8726a82318fa0b2415be346ce02972c3d549f14d6de300af1c6fb9296d26469e87ac8
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

13 lines
386 B
Text

import type { PartitionHash } from "./PartitionHash";
/**
* @internal
* @deprecated unused for endpointRuleSets.
*/
export interface GetResolvedPartitionOptions {
partitionHash: PartitionHash;
}
/**
* @internal
* @deprecated unused for endpointRuleSets.
*/
export declare const getResolvedPartition: (region: string, { partitionHash }: GetResolvedPartitionOptions) => string;