chzzk-z
Version:
chzzk-z is naver streaming platform Chzzk Library
16 lines (15 loc) • 468 B
TypeScript
import { ChzzkModuleOptionDto } from "../dtos/chzzk-connector-option.dto";
export declare class UserStatus {
hasProfile: boolean;
userIdHash: string;
nickname: string;
profileImageUrl: string;
penalties: string[];
officialNotiAgree: boolean;
officialNotiAgreeUpdatedDate: string;
verifiedMark: boolean;
loggedIn: boolean;
}
export declare class ChzzkUserRepository {
status(option: ChzzkModuleOptionDto): Promise<UserStatus>;
}