import type { DbAdapter } from "../adapter.ts"; import type { PgType } from "../pgtype.ts"; import type { Canonical } from "../canonicalise/index.ts"; /** * Range type in a schema with details. */ export interface RangeDetails extends PgType<"range"> { /** * Canonical representation of the range type * with full attribute details. */ canonical: Canonical.Range; } declare const extractRange: (db: DbAdapter, range: PgType<"range">) => Promise; export default extractRange;