kick-sdk
Version:
NodeJS lightweight SDK for Kick.com API.
8 lines (7 loc) • 370 B
TypeScript
import { IApiResponseGetChannel } from './response/apiResponseGetChannel';
export interface IChannelService {
getMyChannel(): Promise<IApiResponseGetChannel>;
getChannels(id: number[]): Promise<IApiResponseGetChannel[]>;
getChannelById(id: number): Promise<IApiResponseGetChannel>;
setLiveStream(channelId: number, streamTitle: string): Promise<void>;
}