Documentation
    Preparing search index...

    Interface LoadersContract<Command>

    All loaders must adhere to the LoadersContract

    interface LoadersContract<Command extends AbstractBaseCommand> {
        getMetaData(): Promise<CommandMetaData[]>;
        getCommand(command: CommandMetaData): Promise<null | Command>;
    }

    Type Parameters

    Implemented by

    Index

    Methods