homebridge-arlo-v2
Version:
Arlo plugin for homebridge
13 lines • 364 B
TypeScript
export interface arloOptionsInterface {
arloPassword: string;
arloUser: string;
debug: boolean;
emailImapPort: number;
emailPassword: string;
emailServer: string;
emailUser: string;
enableRetry: boolean;
retryInterval: number;
}
export type arloOptions = Readonly<arloOptionsInterface>;
//# sourceMappingURL=arlo-config.d.ts.map