chzzk
Version:
네이버 라이브 스트리밍 서비스 CHZZK의 비공식 API 라이브러리
16 lines (15 loc) • 368 B
TypeScript
export interface PartialChannel {
channelId: string;
channelName: string;
channelImageUrl?: string;
verifiedMark: boolean;
userAdultStatus?: string;
personalData?: {
privateUserBlock: boolean;
};
}
export interface Channel extends PartialChannel {
channelDescription: string;
followerCount: number;
openLive: boolean;
}