soop.js
Version:
대한민국의 인터넷 방송 플랫폼 SOOP(숲)의 비공식 API 라이브러리
11 lines (10 loc) • 325 B
TypeScript
import { Browser } from 'playwright';
import { StreamerInfo } from "../api/search";
interface LiveInfo {
streamerInfo: StreamerInfo | null;
streamUrl: string;
streamTitle: string | null;
thumbnailUrl: string;
}
export declare const info: (browser: Browser, bj: string) => Promise<LiveInfo | null>;
export {};