8546c86332
* Front: i18n: Create component * Front: Use new translation component * Front: Translation COmpoent: Change props name * Front: Fix merge
14 lines
267 B
TypeScript
14 lines
267 B
TypeScript
import Metrics from "./Metrics";
|
|
import Model from "./Model";
|
|
import UserSettings from "./UserSettings";
|
|
|
|
interface User extends Model {
|
|
name: string;
|
|
email: string;
|
|
xp: number;
|
|
premium: boolean;
|
|
metrics: Metrics;
|
|
settings: UserSettings;
|
|
}
|
|
|
|
export default User; |