Files
klz-cables.com/.pnpm-store/v10/files/d0/e75bf7170ea504810c54fc3f7aa9bcdfef05e6da257603cc96597966af3309f507772b4e58ff2747b23dd7533663732a16d5e7b84ee1856a9f880ce070870f
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

19 lines
911 B
Plaintext

/**
* Synchronously walks up parent directories until a condition is met and/or one of the file names within the fileNames array is found.
*/
export declare function findUpSync({ condition, dir, fileNames, }: {
condition?: (dir: string) => boolean | Promise<boolean | string> | string;
dir: string;
fileNames?: string[];
}): null | string;
/**
* Asynchronously walks up parent directories until a condition is met and/or one of the file names within the fileNames array is found.
*/
export declare function findUp({ condition, dir, fileNames, }: {
condition?: (dir: string) => boolean | Promise<boolean | string> | string;
dir: string;
fileNames?: string[];
}): Promise<null | string>;
export declare function pathExistsAndIsAccessibleSync(path: string): boolean;
export declare function pathExistsAndIsAccessible(path: string): Promise<boolean>;
//# sourceMappingURL=findUp.d.ts.map