Interface ICliCommandDefinitionMetadata

Command definition metadata.

interface ICliCommandDefinitionMetadata {
    description?: string;
    method: string;
    name: string;
}

Properties

description?: string

Command description. Will be used in the help message.

method: string

Class method name. Will be called when the command is executed.

name: string

Command name. Will be used in cli to call this command and in the help message.