home-assistant-js-websocket
Version:
Home Assistant websocket client
13 lines (12 loc) • 446 B
TypeScript
import { ConnectionOptions } from "./types";
import { Connection } from "./connection";
export * from "./auth";
export * from "./collection";
export * from "./connection";
export * from "./config";
export * from "./services";
export * from "./entities";
export * from "./errors";
export * from "./types";
export * from "./commands";
export declare function createConnection(options?: Partial<ConnectionOptions>): Promise<Connection>;