CliProcessorMetadata: Record<string, any> & {
    icon?: CliIcon | string;
    module?: string;
    requireServer?: boolean;
    sealed?: boolean;
}

Represents command processor metadata

Type declaration

  • Optionalicon?: CliIcon | string

    An icon to display for the processor

  • Optionalmodule?: string

    The module the processor belongs to

  • OptionalrequireServer?: boolean

    If true, the processor requires the server to be running

  • Optionalsealed?: boolean

    If true, the processor is sealed and cannot be extended