/** * Settings for a command. */ export interface CommandSettings { /** * The name of the command. */ action: string; /** * The arguments to the command. */ arguments?: unknown; }