galactic-bot/@types/Commands/Settings.ts
2023-12-05 17:47:54 +02:00

16 lines
333 B
TypeScript

import { SlashCommandOptions } from '../Client.js';
import { ReplyOptions } from '../Wrappers.js';
export type SettingsCommandOptions = {
//
} & SlashCommandOptions
export type SettingResult = {
error?: boolean,
} & ReplyOptions
export type SettingModifyResult<T> = {
list: T[],
modified: T[],
skipped?: T[],
}