UNPKG

@di-zed/yandex-smart-home

Version:

The Yandex Smart Home skills for the different device types.

33 lines (32 loc) 564 B
/** * @author DiZed Team * @copyright Copyright (c) DiZed Team (https://github.com/di-zed/) */ /** * User Interface. * https://yandex.ru/dev/direct/doc/dg-v4/concepts/register.html?lang=en#oauth * * @interface */ export interface UserInterface { /** * Identifier. */ id: string | number; /** * Email Address. */ email: string; /** * Password. */ password?: string; /** * Full Name. */ fullName?: string; /** * List of available device IDs. */ deviceIds: string[]; }