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>
14 lines
396 B
Text
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 {};
|