UNPKG

trender-client

Version:
20 lines (19 loc) 417 B
import type { error } from "./Global"; export declare type userInfo = { user_id: string; username: string; nickname: string; description: string; avatar: string; flags: number; certified: boolean; }; export declare type searchUsers = { error?: error; data?: Array<userInfo>; }; export declare type searchUsersParams = { query: string; skip?: number; limit?: number; };