chzzk
Version:
네이버 라이브 스트리밍 서비스 CHZZK의 비공식 API 라이브러리
13 lines (12 loc) • 586 B
TypeScript
import { ChzzkClient } from "../client";
import { ChatExtras } from "../chat";
export interface NoticeOptions {
extras: string | ChatExtras;
message: string;
messageTime: number;
messageUserIdHash: string;
streamingChannelId: string;
}
export declare function accessToken(client: ChzzkClient, chatChannelId: string): Promise<any>;
export declare function profileCard(client: ChzzkClient, chatChannelId: string, userIdHash: string): Promise<any>;
export declare function notice(client: ChzzkClient, chatChannelId: string, options?: NoticeOptions): Promise<Response>;