/** * 收藏数据 */ import { IllustInfo } from "./illust"; import { NovelInfo } from "./novel"; import { ZoneConfig } from "./user"; export interface BookmarkData { id: number; private: boolean; } export interface Thumbnails { illust: Array; novel: Array; novelDraft: Array; novelSeries: Array; } export interface Translation { en: string | undefined; zh: string | undefined; zh_tw: string | undefined; ko: string | undefined; jp: string | undefined; } export interface Tag { deletable: boolean; locked: boolean; tag: string; translation: Translation | undefined; userId: number; userName: string; } export interface Popular { permanent: Array; recent: Array; } export interface FollowLatest { page: { ids: Array; isLastPage: boolean; }; tagTranslation: object; thumbnails: Thumbnails; zoneConfig: ZoneConfig; }