iobroker.fb-checkpresence
Version:
The adapter checks the presence of family members over the fritzbox. You must fill in the name of the family member and the mac-address of the used device. The comment is optional and you can enable or disable the family member. The datapoint based on the
17 lines (14 loc) • 555 B
TypeScript
// This file extends the AdapterConfig type from "@types/iobroker"
// using the actual properties present in io-package.json
// in order to provide typings for adapter.config properties
import { native } from '../io-package.json';
type _AdapterConfig = Partial<typeof native>;
// Augment the globally declared type ioBroker.AdapterConfig
declare global {
namespace ioBroker {
// tslint:disable-next-line:no-empty-interface
interface AdapterConfig extends _AdapterConfig {
// Do not enter anything here!
}
}
}