import { Illust } from "./Illust"; export interface Tag { name: string; translated_name: string | null; added_by_uploaded_user?: boolean; } export interface TrendTag { tag: string; translated_name: string | null; illust: Illust; } export interface ImageUrls { square_medium: string; medium: string; large: string; original?: string; } export interface ParsedJson { response: { access_token: string; refresh_token: string; user: { id: string; }; expires_in: number; scope: string; }; } export interface Request { request_info: { fan_user_id: number | null; collaborate_status: { collaborating: boolean; collaborate_anonymous_flag: boolean; collaborate_user_samples: []; }; role: string; }; request_users: []; } export type ParamDict = Record;