mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-22 01:44:39 -05:00
12 lines
204 B
TypeScript
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 };
|
|
} |