UNPKG

node-firewalla

Version:

Package to talk your firewalla box & API

19 lines 631 B
import { FWGroupService } from "./FWGroupService.js"; export declare enum FWFeature { ADBLOCK = "adblock", UNBOUND = "unbound", SAFE_SEARCH = "safe_search", FAMILY_PROTECT = "family_protect", DATA_PLAN = "data_plan" } export declare class FeatureService extends FWGroupService { /** * @param {string} featureName - Which feature to enable */ enableFeature(featureName: FWFeature): Promise<{}>; /** * @param {string} featureName - Which feature to disable */ disableFeature(featureName: FWFeature): Promise<{}>; } //# sourceMappingURL=FeatureService.d.ts.map