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

7 lines
273 B
Text

export type MergeFunctions<F1, F2> = F1 extends (arg: infer A1) => infer R1
? F2 extends (arg: infer A2) => infer R2
? R1 extends Promise<unknown>
? (arg?: A1 & A2) => Promise<Awaited<R1> & Awaited<R2>>
: (arg?: A1 & A2) => R1 & R2
: never
: never;