refactor(configuration): Setup configuration and menu to be reuseable

This commit is contained in:
Michel Fedde 2025-06-23 00:57:02 +02:00
parent 863ae3fab2
commit d46bbd84c5
21 changed files with 551 additions and 452 deletions

View file

@ -1,8 +1,7 @@
import {Model} from "./Model";
import {GroupModel} from "./GroupModel";
import {ConfigurationModel} from "./ConfigurationModel";
export interface GroupConfigurationModel extends Model {
export type GroupConfigurationModel = ConfigurationModel & {
group: GroupModel;
key: string;
value: string;
}