export interface Role { name: string; color: string; effect: string; id: string; } export interface meApi { username: string; userid: string; profile: string; user_icon: string; user_header: string; registered_date: string; followee: Array; followee_cnt: number; follower: Array; follower_cnt: number; ueuse_cnt: number; isBot: Boolean; isAdmin: Boolean; role: Role[]; language: String; } export interface ueuseCreateApi { uniqid: string; userid: string; } export interface followApi { userid: string; }