kick-sdk
Version:
NodeJS lightweight SDK for Kick.com API.
10 lines (9 loc) • 347 B
TypeScript
import { ICategoryService } from '../../category/interfaces/categoryService';
import { IUserService } from '../../user/interfaces/userService';
import { IPublicKeyService } from './publicKeyService';
export interface IKickClient {
publicKey: IPublicKeyService;
category: ICategoryService;
user: IUserService;
getToken(): string;
}