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>
11 lines
700 B
Text
11 lines
700 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;
|
|
};
|