UNPKG

tiktok-live-connector

Version:

Node.js library to receive live stream chat events like comments and gifts from TikTok LIVE.

10 lines 399 B
import { Route } from '../../../types/route'; import { RoomInfo } from '../../../types/client'; export type RoomInfoRouteParams = { roomId?: string; } | void; export type RoomInfoResponse = any; export declare class FetchRoomInfoRoute extends Route<RoomInfoRouteParams, RoomInfoResponse> { call(params: RoomInfoRouteParams): Promise<RoomInfo>; } //# sourceMappingURL=fetch-room-info.d.ts.map