Magek Framework
    Preparing search index...

    Interface Injectable

    Injectable interface for registering custom CLI commands with Magek. Commands should be oclif Command classes (concrete implementations, not abstract).

    interface Injectable {
        commands: Record<string, ConcreteCommand>;
    }
    Index

    Properties

    Properties

    commands: Record<string, ConcreteCommand>

    Map of command names to oclif Command classes. The command name will be used as the subcommand name.