UNPKG

koishi-plugin-adapter-iirose

Version:
23 lines (22 loc) 496 B
export interface SelfInfo { username: string; email: string; lastName: string; firstName: string; birthday: string; onlineStatus: string; address: string; personalWebsite: string; hobbies: string; friends: string; uid: string; avatar: string; currentRoom: string; phone: string; } /** * 解析自身信息 * @param message 消息 * @returns {SelfInfo | null} */ export declare const parseSelfInfo: (message: string) => SelfInfo | null;