7 lines
249 B
TypeScript
7 lines
249 B
TypeScript
declare namespace ClientSettings {
|
|
interface Values {
|
|
"ds4.systemMigrationVersion": number;
|
|
"ds4.useSlayingDiceForAutomatedChecks": boolean;
|
|
"ds4.customChecks": Record<string, { label: string; formula: string }>;
|
|
}
|
|
}
|