main commit

This commit is contained in:
2026-06-21 11:27:44 +02:00
commit f45e5197a4
44 changed files with 4511 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { SettingDefinition } from "@common/shared/typings/settings";
/**
* Type definition of the setting definition file.
*/
export declare interface SettingsFile {
[group: string]: SettingDefinition[];
/**
* The current version of the setting file.
*/
version: number;
}
declare const settingsFile: SettingsFile;
export = settingsFile;