Rocky_Mountain_Vending/.pnpm-store/v10/files/81/d8db464f4b1bf501a6aba2b35a232c9a0ab6f17a562f15f2419719a11486165f23afce6128a51b160a95a1df55b2c9e92bf5313de6f5c1028a0c567b718ffc
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

17 lines
506 B
Text

import type { FPArity, FPFn, FPFnInput } from "../types.js";
/**
* Converts a function to a curried function that accepts arguments in reverse
* order.
*
* @param fn - The function to convert to FP
* @param arity - The arity of the function
* @param curriedArgs - The curried arguments
*
* @returns FP version of the function
*
* @private
*/
export declare function convertToFP<
Fn extends FPFnInput,
Arity extends FPArity,
>(fn: Fn, arity: Arity, curriedArgs?: unknown[]): FPFn<Fn, Arity>;