Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/276a3b3184cc31a16b289952c7dcf67d10ba042c99dc118c397ac40b763c24f4093f7a2ed6ec7fb5f729a4650d733b764f8332f22ba8fdb4982c97433a28fc
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

11 lines
689 B
Text

export declare const endpointFunctions: {
booleanEquals: (value1: boolean, value2: boolean) => boolean;
getAttr: (value: import("../lib").GetAttrValue, path: string) => import("../lib").GetAttrValue;
isSet: (value: unknown) => value is {};
isValidHostLabel: (value: string, allowSubDomains?: boolean) => boolean;
not: (value: boolean) => boolean;
parseURL: (value: string | URL | import("@smithy/types").Endpoint) => import("@smithy/types").EndpointURL | null;
stringEquals: (value1: string, value2: string) => boolean;
substring: (input: string, start: number, stop: number, reverse: boolean) => string | null;
uriEncode: (value: string) => string;
};