soop-extension
Version:
라이브 스트리밍 서비스 숲(soop)의 비공식 API 라이브러리
18 lines (17 loc) • 433 B
TypeScript
import { SoopChat, SoopChatOptions } from "./chat";
export interface SoopAPIBaseUrls {
soopLiveBaseUrl?: string;
soopChannelBaseUrl?: string;
soopAuthBaseUrl?: string;
}
export interface SoopClientOptions {
baseUrls?: SoopAPIBaseUrls;
userAgent?: string;
}
export interface SoopLoginOptions {
userId?: string;
password?: string;
}
export type SoopChatFunc = {
(options: SoopChatOptions): SoopChat;
};