Files
klz-cables.com/.pnpm-store/v10/files/ba/67957f5303fed43fc1b3ceda24af2948f8c5ec95cde996f01282bd0e3442503b3837dc07088940aad21d0b60f99d85b8a4e1f17c591d73e067d54c90d93078
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

24 lines
885 B
Plaintext

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