import { MrPluginInstance, MrService } from '@cirrusct/mr-core'; import { manifests } from './manifest'; export class MrPlugin implements MrPluginInstance { // constructor(options) { // debugger // } public apply = async (mrService: MrService) => { await mrService.commandService.register(...manifests); }; }