Rocky_Mountain_Vending/.pnpm-store/v10/files/75/dcbd7085c32b4f04bf0e63934d2822f0801e8a8babd5043a4ffe12f5ab60672732d642e57c75096aaaaefce0cef13365900a88d7564bf0b08a911cfc737fc8
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

23 lines
635 B
Text

export interface ARN {
partition: string;
service: string;
region: string;
accountId: string;
resource: string;
}
/**
* Validate whether a string is an ARN.
*/
export declare const validate: (str: any) => boolean;
/**
* Parse an ARN string into structure with partition, service, region, accountId and resource values
*/
export declare const parse: (arn: string) => ARN;
type buildOptions = Omit<ARN, "partition"> & {
partition?: string;
};
/**
* Build an ARN with service, partition, region, accountId, and resources strings
*/
export declare const build: (arnObject: buildOptions) => string;
export {};