galactic-bot/@types/Commands/Settings.ts

16 lines
333 B
TypeScript
Raw Normal View History

2023-12-05 16:47:54 +01:00
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[],
}