Rocky_Mountain_Vending/.pnpm-store/v10/files/54/9e1eeb76f4c56853e9b95da0666e9665035f5d32951c126fe7b9f69961392874aad8d25762ecf39f90cae261962e552a154e940624a60ce6ded69391ab0279
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

24 lines
910 B
Text

export interface ProcessInterface {
execArgv: string[];
argv: string[];
cwd: () => string;
}
export interface ProcessArgs {
appPath: string;
importPaths: string[];
requirePaths: string[];
}
/**
* Parses the process arguments to determine the app path, import paths, and require paths.
*/
export declare function parseProcessPaths(proc: ProcessInterface): ProcessArgs;
/**
* Gets the current entry point type.
*
* `app` means this function was most likely called via the app entry point.
* `import` means this function was most likely called from an --import cli arg.
* `require` means this function was most likely called from a --require cli arg.
* `unknown` means we couldn't determine for sure.
*/
export declare function getEntryPointType(proc?: ProcessInterface): 'import' | 'require' | 'app' | 'unknown';
//# sourceMappingURL=entry-point.d.ts.map