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