kick-sdk
Version:
NodeJS lightweight SDK for Kick.com API.
18 lines (17 loc) • 805 B
TypeScript
import { IKickClientOptions } from './interfaces/kickClientOptions';
import { IKickClient } from './interfaces/kickClient';
import { IPublicKeyService } from './interfaces/publicKeyService';
import { ICategoryService } from '../category/interfaces/categoryService';
import { IUserService } from '../user/interfaces/userService';
import { IChannelService } from '../channel/interfaces/channelService';
import { IChatService } from '../chat/interfaces/chatService';
export declare class KickClient implements IKickClient {
private token;
readonly publicKey: IPublicKeyService;
readonly category: ICategoryService;
readonly user: IUserService;
readonly channel: IChannelService;
readonly chat: IChatService;
constructor(options: IKickClientOptions);
getToken: () => string;
}