interface CurrentUserInfo {
    isBot: boolean;
    isPremium: boolean;
    userId: number;
    usernames: string[];
}

Properties

isBot: boolean
isPremium: boolean
userId: number
usernames: string[]