Rocky_Mountain_Vending/.pnpm-store/v10/files/22/bbe1ca22dd1176e2d143630b3928c59a6b95b896b8e4db61a208778a5d9b92377c8e3b2cbe7f1e16143f42991af1c102621220bd123e51926ee474bda0dc5a
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

18 lines
575 B
Text

/**
* The default join function iterates over possible base paths until a suitable join is found.
*
* The first base path is used as fallback for the case where none of the base paths can locate the actual file.
*
* @type {function}
*/
export declare const defaultJoin: ((filename: string, options: {
debug?: any | boolean;
root: string;
}) => (
/** A uri path, relative or absolute */
uri: string,
/** Optional absolute base path or iterator thereof */
baseOrIteratorOrAbsent: any) => any) & ("" | {
valueOf: () => string;
toString: () => string;
});