* Add lint-fix npm target * Sync eslint+plugins with backend * Add prettier * Ignore no-explicit-any lint rule for now * Silence eslint react warning * Format frontend via prettier * Lint frontend. --------- Co-authored-by: antanst <>
8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
export interface User {
|
|
id: number;
|
|
email: string;
|
|
language: string;
|
|
appearance: string;
|
|
timezone: string;
|
|
avatarUrl?: string;
|
|
}
|