koishi-plugin-adapter-iirose
Version:
[IIROSE-蔷薇花园](https://iirose.com/)适配器
17 lines (15 loc) • 336 B
text/typescript
// 修改自身账号信息
export type ProfileData = Partial<{
surname: string;
name: string;
birthday: string;
tag: string;
hobby: string;
residence: string;
website: string;
family: string;
}>;
export default function updateSelfInfo(profileData: ProfileData): string
{
return `$2${JSON.stringify(profileData)}`;
}