CommandTranslationMetadata
CommandTranslationMetadata
Represents the metadata for command translations.
Signature
interface CommandTranslationMetadata {
    name?: string;
    description?: string;
    options?: (
    | Record<'name' | 'description', string>
    | Record<string, Record<'name' | 'description', string>>
  )[];
}