Rocky_Mountain_Vending/.pnpm-store/v10/files/d0/963564a6c12f8b598fc9c89827862fd8802468f4ce16f5c5a81a7e250d95f24a88328faaa2087fe74f44fd663fb608b280fc5212b1ecf55998dfdfec38f0b0
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
No EOL
534 B
Text

/// <reference types="node" />
import type { FunctionPropertyNames, FMember } from './types';
import type * as fs from 'fs';
declare type FS = typeof fs;
export declare function splitTwoLevels<FSObject>(functionName: FMember): [FunctionPropertyNames<FSObject> & string] | [FunctionPropertyNames<FSObject> & string, string];
export declare function indexFs<FSObject extends FS | FS['promises']>(fs: FSObject, member: FMember): {
objectToPatch: any;
functionNameToPatch: string;
};
export {};
//# sourceMappingURL=utils.d.ts.map