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
No EOL
534 B
Text
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 |