1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-11 18:26:23 +00:00
Vencord/src/webpack/common/settingsStores.ts
2024-05-02 23:18:12 -03:00

15 lines
538 B
TypeScript

/*
* Vencord, a Discord client mod
* Copyright (c) 2023 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
import { findByProps } from "@webpack";
import * as t from "./types/settingsStores";
export const TextAndImagesSettingsStores = findByProps("MessageDisplayCompact") as Record<string, t.SettingsStore>;
export const StatusSettingsStores = findByProps("ShowCurrentGame") as Record<string, t.SettingsStore>;
export const UserSettingsActionCreators = findByProps("PreloadedUserSettingsActionCreators");