Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/3fecca989516be6835a5715cd1d48f7952fd5fcd8a742a63ede46d782a81895a933933451e606b469113447cd6256f8794508ed9713429de8f3271d089d44b
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

34 lines
No EOL
869 B
Text

/**
* Creates a function from a string.
*
* @internal
*/
export declare const createFunction: (functionValue: string) => ((...args: unknown[]) => unknown);
/**
* @internal
*/
export declare function stringifyFunction(fn: (...args: never) => unknown): string;
/**
* Replaces `PLACEHOLDER`s with the given replacements.
*
* All replacements must be valid JS code.
*
* @example
*
* ```ts
* interpolateFunction(() => PLACEHOLDER('test'), {test: 'void 0'});
* // Equivalent to () => void 0
* ```
*
* @internal
*/
export declare const interpolateFunction: <T extends (...args: never[]) => unknown>(fn: T, replacements: Record<string, string>) => T;
declare global {
/**
* Used for interpolation with {@link interpolateFunction}.
*
* @internal
*/
function PLACEHOLDER<T>(name: string): T;
}
//# sourceMappingURL=Function.d.ts.map