UNPKG

281 BTypeScriptView Raw
1export declare class ConnSpec {
2 scheme: string;
3 hosts: [string, number][];
4 bucket: string;
5 options: {
6 [key: string]: string | string[];
7 };
8 constructor(data?: Partial<ConnSpec>);
9 static parse(connStr: string): ConnSpec;
10 toString(): string;
11}