/** * Generic scalar mapping tables. * * Map source type names — Postgres types and JSON Schema types — to GraphQL * scalar names. They carry no plugin-specific logic, so they live here as * shared internals rather than co-located with any one plugin's derivation * code. */ /** GraphQL scalar type names produced by the mapping tables below. */ export type GraphQLScalarName = 'String' | 'Int' | 'Float' | 'Boolean' | 'UUID' | 'Datetime' | 'BigFloat' | 'JSON'; /** Postgres type → GraphQL scalar name. */ export declare const PG_TYPE_SCALARS: Record; /** JSON Schema type → GraphQL scalar name. */ export declare const JSON_SCHEMA_SCALARS: Record;