* 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 <>
5 lines
87 B
TypeScript
5 lines
87 B
TypeScript
export interface Area {
|
|
id?: number;
|
|
name: string;
|
|
description?: string;
|
|
}
|