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