CommandOption: {
    defaultValue?: string | number | boolean;
    description: string;
    name: string;
}

Defines an option that can be passed to a command.

const levelOption: CommandOption = {
name: 'level',
description: 'Difficulty level (1-10)',
defaultValue: 5
};