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>
12 lines
473 B
Text
Executable file
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;
|
|
}
|