import { ColumnTypeDescriptor } from "@prisma-next/framework-components/codec"; //#region src/exports/column-types.d.ts declare const geometryColumn: { readonly codecId: "pg/geometry@1"; readonly nativeType: "geometry"; }; /** * Build an SRID-constrained geometry column descriptor. * * @example * .column('location', { type: geometry({ srid: 4326 }), nullable: false }) * // Produces: nativeType: 'geometry', typeParams: { srid: 4326 } * * @throws {RangeError} If `srid` is not a non-negative integer. */ declare function geometry(options: { readonly srid: S; }): ColumnTypeDescriptor & { readonly typeParams: { readonly srid: S; }; }; //#endregion export { geometry, geometryColumn }; //# sourceMappingURL=column-types.d.mts.map