interface CustomTypeParamsimport { type CustomTypeParams } from "https://deno.land/x/drizzle@v0.23.85/pg-core.ts"; Type ParametersT extends CustomTypeValuesPropertiesdataType: (config: T["config"] | (Equal<T["configRequired"], true> extends true ? never : undefined)) => stringDatabase data type string representation, that is used for migrations optionaltoDriver: (value: T["data"]) => T["driverData"] | SQLOptional mapping function, between user input and driver optionalfromDriver: (value: T["driverData"]) => T["data"]Optional mapping function, that is responsible for data mapping from database to JS/TS code