1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-11 10:26:21 +00:00
Vencord/src/webpack/common/settingsStores.ts

15 lines
585 B
TypeScript
Raw Normal View History

/*
* Vencord, a Discord client mod
* Copyright (c) 2023 Vendicated and contributors
* SPDX-License-Identifier: GPL-3.0-or-later
*/
2024-05-03 04:50:50 +00:00
// eslint-disable-next-line path-alias/no-relative
import { findByProps } from "../webpack";
import * as t from "./types/settingsStores";
2024-05-03 04:50:50 +00:00
export const TextAndImagesSettingsStores = findByProps<Record<string, t.SettingsStore>>("MessageDisplayCompact");
export const StatusSettingsStores = findByProps<Record<string, t.SettingsStore>>("ShowCurrentGame");
2023-10-25 16:42:31 +00:00
2024-05-03 02:18:12 +00:00
export const UserSettingsActionCreators = findByProps("PreloadedUserSettingsActionCreators");