UNPKG

tiktok-live-connector

Version:

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

23 lines 717 B
import { Route } from '../../../types/route'; export type FetchRoomInfoFromApiRouteParams = { uniqueId: string; }; export type FetchRoomInfoFromApiRouteResponse = { statusCode: number; message?: string; data?: { user?: Record<string, any> & { roomId: string; }; liveRoom?: Record<string, any> & { status: number; roomId: string; }; }; }; export declare class FetchRoomInfoFromApiLiveRoute extends Route<FetchRoomInfoFromApiRouteParams, FetchRoomInfoFromApiRouteResponse> { call({ uniqueId }: { uniqueId: any; }): Promise<FetchRoomInfoFromApiRouteResponse>; } //# sourceMappingURL=fetch-room-info-api-live.d.ts.map