zwave-js
Version:
Z-Wave driver written entirely in JavaScript/TypeScript
10 lines • 347 B
TypeScript
import type { Serial } from "@zwave-js/serial";
import type { DatabaseFactory, FileSystem, Platform } from "@zwave-js/shared/bindings";
/** Abstractions for a host system Z-Wave JS is running on */
export interface Host {
fs: FileSystem;
platform: Platform;
serial: Serial;
db: DatabaseFactory;
}
//# sourceMappingURL=Host.d.ts.map