homebridge-virtual-accessories
Version:
Virtual HomeKit accessories for Homebridge.
13 lines (12 loc) • 347 B
TypeScript
import { Validatable } from '../validatable.js';
/**
*
*/
export declare class PingTriggerConfiguration implements Validatable {
host: string;
failureRetryCount: number;
isDisabled: boolean;
private errorFields;
readonly fieldNames: { [P in keyof this]?: P | undefined; };
isValid(prefix: string): [boolean, string[]];
}