@ginstone/nga-api
Version:
56 lines (55 loc) • 878 B
TypeScript
import { ForumType } from "../../enums/ForumType";
export declare class FavorForum {
/**
* 类型
*/
readonly type?: ForumType;
/**
* 版面id
*/
readonly forumId?: number;
/**
* id
*/
readonly id: number;
/**
* 信息
*/
readonly info?: string;
/**
* 版面或合集名称
*/
readonly name: string;
/**
* 合集Tid
*/
readonly colTid?: number;
/**
* 版面图标
*/
readonly icon?: string;
readonly iconBig?: string;
constructor(raw: FavorForumRaw);
}
export interface FavorForumRaw {
/**
* 版面id
*/
fid?: number;
/**
* id
*/
id: number;
/**
* 信息
*/
info?: string;
/**
* 版面或合集名称
*/
name: string;
/**
* 合集Tid
*/
stid?: number;
}