UNPKG

trender-client

Version:
29 lines (28 loc) 605 B
import type { error } from "./Global"; export declare type userInfo = { user_id: string; username: string; nickname: string; description: string; avatar: string; banner: string; link?: string; accent_color: string; flags: number; is_private: boolean; allow_mp: boolean; pined_post?: string; created_at: Date; }; export declare type profileInformations = { error?: error; data?: { user_info: userInfo; subscriptions?: { total: number; }; subscribers?: { total: number; }; }; };