mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
fix: secure options is boolean (#38232)
This commit is contained in:
parent
e9af254132
commit
8eae05f7f1
16
types/solr-client/index.d.ts
vendored
16
types/solr-client/index.d.ts
vendored
@ -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 {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user