(docs): remove the residue of my inability to understand my own ideas.

This commit is contained in:
2026-08-27 22:30:59 +08:00
parent 68b8bd6f15
commit d2a7a2598b
-24
View File
@@ -1,24 +1,15 @@
// --- Bot Settings ---
/**
* Bot Settings.
*/
export type Settings = {
branding?: BrandingSettings;
};
/**
* Branding settings.
*/
export type BrandingSettings = {
status?: string;
};
// --- Guild Configuration ---
/**
* Guild configuration.
*/
export type Configuration = {
admin?: AdminConfiguration;
censor?: CensorConfiguration;
@@ -26,27 +17,12 @@ export type Configuration = {
spam?: SpamConfiguration;
};
/**
* Admin configuration.
*/
export type AdminConfiguration = {};
/**
* Censor configuration.
*/
export type CensorConfiguration = {};
/**
* Core configuration.
*/
export type CoreConfiguration = {};
/**
* Logging configuration.
*/
export type LoggingConfiguration = {};
/**
* Spam configuration.
*/
export type SpamConfiguration = {};