fix: secure options is boolean (#38232)

This commit is contained in:
Francesco Bedussi 2019-09-10 05:41:36 +02:00 committed by Mine Starks
parent e9af254132
commit 8eae05f7f1

View File

@ -10,14 +10,14 @@ import { ClientRequest } from "http";
export function createClient(options?: Options): Client;
export interface Options {
host?: string;
port?: number;
core?: string;
path?: string;
agent?: string;
secure?: string;
bigint?: string;
solrVersion?: string;
host?: string;
port?: number;
core?: string;
path?: string;
agent?: string;
secure?: boolean;
bigint?: string;
solrVersion?: string;
}
export interface RangeFilterOption {