3 - Added Prettier for formatting and formatted.

This commit is contained in:
Caleb Campbell
2025-12-26 09:43:29 +11:00
parent 0275b5a439
commit 054744e35b
26 changed files with 955 additions and 1123 deletions

View File

@@ -1,21 +1,21 @@
export interface Book {
id: string;
id: string;
name: string;
aliases: string[];
}
export interface Settings {
[key: string]: SettingsGroup
[key: string]: SettingsGroup;
}
interface SettingsGroup {
name: string;
description?: string;
controls: { [key: string]: Control };
name: string;
description?: string;
controls: { [key: string]: Control };
}
interface Control {
name: string;
description?: string;
placeholder?: string;
}
name: string;
description?: string;
placeholder?: string;
}