@di-zed/yandex-smart-home
Version:
The Yandex Smart Home skills for the different device types.
23 lines (22 loc) • 546 B
TypeScript
import { ClientInterface } from '../models/clientModel';
/**
* Client Repository.
*/
declare class ClientRepository {
/**
* Get Client by ID.
*
* @param appId
* @returns Promise<ClientInterface>
*/
getClientById(appId: number): Promise<ClientInterface>;
/**
* Get Client by Client ID.
*
* @param clientId
* @returns Promise<ClientInterface>
*/
getClientByClientId(clientId: string): Promise<ClientInterface>;
}
declare const _default: ClientRepository;
export default _default;