Interface CommandRegistryExt

interface CommandRegistryExt {
    $executeCommand<T>(id, ...ars): PromiseLike<undefined | T>;
    registerArgumentProcessor(processor): void;
}

Implemented by

Methods