@tdengine/websocket
Version:
The websocket Node.js connector for TDengine. TDengine versions 3.3.2.0 and above are recommended to use this connector.
16 lines • 371 B
TypeScript
export interface User {
user?: string;
passwd?: string;
}
export interface Uri {
scheme: string;
url?: string;
host?: string | undefined | null;
path: '/rest/sql/' | string;
port?: number | undefined | null;
query?: {
[key: string]: string;
};
fragment?: string | undefined | null;
}
//# sourceMappingURL=wsOptions.d.ts.map