Variable clickhouseTypeConst

clickhouseType: {
    boolean: (() => ClickhouseType<Nullable<boolean>>);
    date: (() => ClickhouseType<Nullable<string>>);
    dateTime: (() => ClickhouseType<Nullable<string>>);
    dateTime64: ((precision: number) => ClickhouseType<Nullable<string>>);
    decimal: ((precision: number, scale: number) => ClickhouseType<Nullable<number>>);
    enum16: ((values: Record<string, number>) => ClickhouseType<Nullable<string>>);
    enum8: ((values: Record<string, number>) => ClickhouseType<Nullable<string>>);
    fixedString: ((n: number) => ClickhouseType<Nullable<string>>);
    float32: (() => ClickhouseType<Nullable<number>>);
    float64: (() => ClickhouseType<Nullable<number>>);
    int16: (() => ClickhouseType<Nullable<number>>);
    int32: (() => ClickhouseType<Nullable<number>>);
    int64: (() => ClickhouseType<Nullable<string>>);
    int8: (() => ClickhouseType<Nullable<number>>);
    ipv4: (() => ClickhouseType<Nullable<string>>);
    ipv6: (() => ClickhouseType<Nullable<string>>);
    json: (() => ClickhouseType<Nullable<object>>);
    string: (() => ClickhouseType<Nullable<string>>);
    uint16: (() => ClickhouseType<Nullable<number>>);
    uint32: (() => ClickhouseType<Nullable<number>>);
    uint64: (() => ClickhouseType<Nullable<string>>);
    uint8: (() => ClickhouseType<Nullable<number>>);
    uuid: (() => ClickhouseType<Nullable<string>>);
} = ...

Type declaration