plugins/popn-hello@asphyxia/models/profile.ts
2020-11-27 04:12:29 +09:00

12 lines
204 B
TypeScript

export interface Profile {
collection: 'profile',
unlockAll: boolean;
history: {
chara: number;
level: number;
mid: number;
style: number;
};
charas: { [id: string]: number };
}