soop.js
Version:
대한민국의 인터넷 방송 플랫폼 SOOP(숲)의 비공식 API 라이브러리
11 lines (10 loc) • 377 B
TypeScript
import { Browser } from 'playwright';
export interface StreamerInfo {
streamerId: string | null;
streamerName: string | null;
streamerThumbnail: string | null;
streamerFavorites: string | null;
streamerSubscribe: string | null;
streamerExplanation: string | null;
}
export declare const channel: (browser: Browser, bj: string) => Promise<StreamerInfo>;