UNPKG

@di-zed/yandex-smart-home

Version:

The Yandex Smart Home skills for the different device types.

25 lines (24 loc) 441 B
/** * @author DiZed Team * @copyright Copyright (c) DiZed Team (https://github.com/di-zed/) */ /** * Client Interface. * https://yandex.ru/dev/direct/doc/dg-v4/concepts/register.html?lang=en#oauth * * @interface */ export interface ClientInterface { /** * Identifier. */ id: number; /** * Application ID. */ clientId: string; /** * Application Secret. */ clientSecret: string; }