2021-06-26 22:02:00 +02:00
|
|
|
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2021-06-30 02:17:54 +02:00
|
|
|
import { DS4 } from "./config";
|
|
|
|
|
|
|
|
declare global {
|
|
|
|
namespace ClientSettings {
|
|
|
|
interface Values {
|
|
|
|
"ds4.systemMigrationVersion": number;
|
|
|
|
"ds4.useSlayingDiceForAutomatedChecks": boolean;
|
|
|
|
"ds4.showSlayerPoints": boolean;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
interface CONFIG {
|
|
|
|
DS4: typeof DS4;
|
2021-03-22 09:04:45 +01:00
|
|
|
}
|
|
|
|
}
|