kick-sdk
Version:
NodeJS lightweight SDK for Kick.com API.
12 lines (11 loc) • 606 B
TypeScript
import { IKickClient } from '../client/interfaces/kickClient';
import { IChannelService } from './interfaces/channelService';
import { IApiResponseGetChannel } from './interfaces/response/apiResponseGetChannel';
export declare class ChannelService implements IChannelService {
private readonly client;
constructor(client: IKickClient);
getMyChannel(): Promise<IApiResponseGetChannel>;
getChannels(ids: number[]): Promise<IApiResponseGetChannel[]>;
getChannelById(id: number): Promise<IApiResponseGetChannel>;
setLiveStream(categoryId: number, streamTitle: string): Promise<void>;
}