// SPDX-FileCopyrightText: 2021 Johannes Loher // // SPDX-License-Identifier: MIT import { DS4 } from "./config"; declare global { namespace ClientSettings { interface Values { "ds4.systemMigrationVersion": number; "ds4.useSlayingDiceForAutomatedChecks": boolean; "ds4.showSlayerPoints": boolean; } } namespace PoolTerm { interface Modifiers { x: (this: PoolTerm, modifier: string) => void; } } interface CONFIG { DS4: typeof DS4; } }