Rocky_Mountain_Vending/.pnpm-store/v10/files/f5/81ffcb1bc5c36baeab8eada3f399fa0b7b8c9161d0d3112c7cd5bf9f4f3b3b47d1211b45e1e7e933626778c17eb83ff0cc138fef828f9aab062e5edfa3813f
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

14 lines
396 B
Text

export interface ARN {
partition: string;
service: string;
region: string;
accountId: string;
resource: string;
}
export declare const validate: (str: any) => boolean;
export declare const parse: (arn: string) => ARN;
type buildOptions = Pick<ARN, Exclude<keyof ARN, "partition">> & {
partition?: string;
};
export declare const build: (arnObject: buildOptions) => string;
export {};