zigbee-herdsman
Version:
An open source ZigBee gateway solution with node.js.
14 lines (12 loc) • 394 B
text/typescript
import type {TsType} from "../../";
import type {ZnpVersion} from "../adapter/tstype";
/**
* Startup options structure is used by `zStackAdapter` to pass configuration to adapter manager.
*/
export interface StartupOptions {
version: ZnpVersion;
networkOptions: TsType.NetworkOptions;
greenPowerGroup: number;
backupPath: string;
adapterOptions: TsType.AdapterOptions;
}