UNPKG

@hackolade/couchbase

Version:

Re-published version to have all prebuilds defined as npm packages without platform constraints for cross building an Electron application - The official Couchbase Node.js Client Library.

12 lines (11 loc) 281 B
export declare class ConnSpec { scheme: string; hosts: [string, number][]; bucket: string; options: { [key: string]: string | string[]; }; constructor(data?: Partial<ConnSpec>); static parse(connStr: string): ConnSpec; toString(): string; }