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