UNPKG

tiktok-live-connector

Version:

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

14 lines 651 B
import { Route } from '../../../types/route'; import { FetchRoomInfoFromApiRouteResponse } from '../../../lib/web/routes/fetch-room-info-api-live'; export type FetchRoomInfoFromHtmlRouteParams = { uniqueId: string; }; export type FetchRoomInfoFromHtmlRouteResponse = Record<string, any> & { liveRoomUserInfo?: FetchRoomInfoFromApiRouteResponse['data']; }; export declare class FetchRoomInfoFromHtmlRoute extends Route<FetchRoomInfoFromHtmlRouteParams, FetchRoomInfoFromHtmlRouteResponse> { call({ uniqueId }: { uniqueId: any; }): Promise<FetchRoomInfoFromHtmlRouteResponse>; } //# sourceMappingURL=fetch-room-info-html.d.ts.map