Arguments for the ClickHouseStore class, which include the host, port, protocol, username, password, index type, index parameters, index query params, column map, database, table.

interface ClickHouseLibArgs {
    host: string;
    password: string;
    port: string | number;
    username: string;
    columnMap?: ColumnMap;
    database?: string;
    indexParam?: Record<string, number>;
    indexQueryParams?: Record<string, string>;
    indexType?: string;
    protocol?: string;
    table?: string;
}

Properties

host: string
password: string
port: string | number
username: string
columnMap?: ColumnMap
database?: string
indexParam?: Record<string, number>
indexQueryParams?: Record<string, string>
indexType?: string
protocol?: string
table?: string

Generated using TypeDoc