soop-extension
Version:
라이브 스트리밍 서비스 숲(soop)의 비공식 API 라이브러리
13 lines (12 loc) • 425 B
TypeScript
import { SoopAuth, SoopLive } from "./api";
import { SoopChatFunc, SoopClientOptions } from "./types";
import { SoopChannel } from "./api";
export declare class SoopClient {
readonly options: SoopClientOptions;
live: SoopLive;
channel: SoopChannel;
auth: SoopAuth;
constructor(options?: SoopClientOptions);
get chat(): SoopChatFunc;
fetch(url: string, options?: RequestInit): Promise<Response>;
}