CommanderJSX
    Preparing search index...

    Interface CommandMeta<I, O>

    interface CommandMeta<I, O = any> {
        children?: CommandChildren<I, any>;
        description?: string;
        executor?: Executor<I, O>;
        name?: string;
        options?: Options<I>;
        parameters?: string;
        pattern?: RegExp;
        shortcut?: string;
        version?: string;
    }

    Type Parameters

    • I
    • O = any

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    children?: CommandChildren<I, any>
    description?: string
    executor?: Executor<I, O>
    name?: string
    options?: Options<I>
    parameters?: string
    pattern?: RegExp
    shortcut?: string
    version?: string