Rocky_Mountain_Vending/.pnpm-store/v10/files/86/7437e5f3003f01923cecb6a0ead0c471f4bd0bfebf3d18f814bdac44c8a57d1c7f210a718048e05a1aa17f4a10172106b7d7c49c10986f7accdcb7a7265656-exec
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

12 lines
473 B
Text
Executable file

import { CustomTypesConfig } from '..';
type TypeParser<TOid = number, TReturn = any> = (oid: TOid) => TReturn;
type TypeFormat = 'text' | 'binary';
export = TypeOverrides;
declare class TypeOverrides implements CustomTypesConfig {
constructor(types?: CustomTypesConfig);
setTypeParser(oid: number, format: TypeFormat, fn: TypeParser): void;
setTypeParser(oid: number, fn: TypeParser): void;
getTypeParser(oid: number, format?: TypeFormat): TypeParser;
}