trender-client
Version:
Official Trender client API
21 lines (20 loc) • 495 B
TypeScript
import type { error } from "./Global";
export declare type followInformations = {
error?: error;
};
export declare type followListInformations = {
error?: error;
data?: Array<{
follow_id?: string;
user_id: string;
target_id: string;
created_at: Date;
description?: string;
accepted: boolean;
nickname: string;
username: string;
avatar: string;
is_private: boolean;
verified: boolean;
}>;
};