import { DbAdapter } from "../adapter.ts"; import type { PgType } from "../pgtype.ts"; /** Enum type in a schema. */ export interface EnumDetails extends PgType<"enum"> { /** Array of enum values in order. */ values: string[]; } declare const extractEnum: (db: DbAdapter, pgEnum: PgType<"enum">) => Promise; export default extractEnum;