UNPKG

koishi-plugin-adapter-iirose

Version:
16 lines (15 loc) 309 B
export interface ForumPost { name: string; avatar: string; type: string; content: string; } export interface Forum { posts: ForumPost[]; } /** * 解析论坛数据 * @param message 消息 * @returns {Forum | null} */ export declare const parseForum: (message: string) => Forum | null;