Variable pgTypeConst

pgType: {
    bigint: (() => PgType<Nullable<bigint>>);
    bigserial: (() => PgType<Nullable<bigint>>);
    boolean: (() => PgType<Nullable<boolean>>);
    box: (() => PgType<Nullable<string>>);
    bytea: (() => PgType<Nullable<Uint8Array>>);
    char: ((n: number) => PgType<Nullable<string>>);
    cidr: (() => PgType<Nullable<string>>);
    circle: (() => PgType<Nullable<string>>);
    date: (() => PgType<Nullable<Date>>);
    dateTime: (() => PgType<Nullable<Date>>);
    decimal: (() => PgType<Nullable<number>>);
    doublePrecision: (() => PgType<Nullable<number>>);
    inet: (() => PgType<Nullable<string>>);
    integer: (() => PgType<Nullable<number>>);
    interval: (() => PgType<Nullable<string>>);
    json: (() => PgType<Nullable<object>>);
    jsonb: (() => PgType<Nullable<object>>);
    line: (() => PgType<Nullable<string>>);
    lseg: (() => PgType<Nullable<string>>);
    macaddr: (() => PgType<Nullable<string>>);
    money: (() => PgType<Nullable<number>>);
    numeric: (() => PgType<Nullable<number>>);
    point: (() => PgType<Nullable<string>>);
    polygon: (() => PgType<Nullable<string>>);
    real: (() => PgType<Nullable<number>>);
    serial: (() => PgType<Nullable<number>>);
    smallint: (() => PgType<Nullable<number>>);
    smallserial: (() => PgType<Nullable<number>>);
    text: (() => PgType<Nullable<string>>);
    time: (() => PgType<Nullable<string>>);
    tsquery: (() => PgType<Nullable<string>>);
    tsvector: (() => PgType<Nullable<string>>);
    uuid: (() => PgType<Nullable<string>>);
    varchar: ((n: number) => PgType<Nullable<string>>);
    xml: (() => PgType<Nullable<string>>);
} = ...