2023-10-25 15:33:22 +00:00
|
|
|
/*
|
|
|
|
* Vencord, a Discord client mod
|
|
|
|
* Copyright (c) 2023 Vendicated and contributors
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { findByPropsLazy } from "@webpack";
|
|
|
|
|
2024-03-07 18:53:26 +00:00
|
|
|
import * as t from "./types/settingsStores";
|
|
|
|
|
|
|
|
|
|
|
|
export const TextAndImagesSettingsStores = findByPropsLazy("MessageDisplayCompact") as Record<string, t.SettingsStore>;
|
|
|
|
export const StatusSettingsStores = findByPropsLazy("ShowCurrentGame") as Record<string, t.SettingsStore>;
|
2023-10-25 16:42:31 +00:00
|
|
|
|
|
|
|
export const UserSettingsActionCreators = findByPropsLazy("PreloadedUserSettingsActionCreators");
|