UNPKG

@piarre/ts-freebox

Version:

12 lines (10 loc) 279 B
/** * Global config gives quick access to major configuration settings (eg: toggle Wi-Fi) */ interface config { /** is wifi enabled */ enabled: boolean; power_saving: boolean; mac_filter_state: "disabled" | "whitelist" | "blacklist"; } export type { config };