@spectralblu/homebridge-eufy-security
Version:
Control Eufy Security from homebridge. Forked from homebridge-eufy-security/plugin
18 lines • 361 B
TypeScript
export type Credentials = {
username: string;
password: string;
country: string;
deviceName: string;
};
export declare enum LoginFailReason {
UNKNOWN = 0,
CAPTCHA = 1,
TFA = 2,
TIMEOUT = 3
}
export type LoginResult = {
success: boolean;
failReason?: LoginFailReason;
data?: any;
};
//# sourceMappingURL=types.d.ts.map