Rocky_Mountain_Vending/.pnpm-store/v10/files/9d/842a1da31fa23dff54e3de5ba5d11043a710709f490dc6c13ac51e73dcb4551d4748a14ffca919f5559127d1a1a31061038c01c6aa147870de4e0da71afbfc
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

6 lines
220 B
Text

export declare type Fork = {
use<T>(plugin: Plugin<T>): T;
};
export declare type Plugin<T> = (fork: Fork) => T;
export declare type Def = Plugin<void>;
export declare type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;