mirror of
https://github.com/RobinRMC/VencordPlus.git
synced 2025-05-10 17:35:39 +02:00
16 lines
412 B
TypeScript
16 lines
412 B
TypeScript
/*
|
|
* Vencord, a Discord client mod
|
|
* Copyright (c) 2024 Vendicated and contributors
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
import { definePluginSettings } from "@api/Settings";
|
|
import { OptionType } from "@utils/types";
|
|
|
|
export default definePluginSettings({
|
|
startupCache: {
|
|
default: false,
|
|
type: OptionType.BOOLEAN,
|
|
description: "Cache all users on startup",
|
|
},
|
|
});
|