(name: T, MixinClass: any)
| 887 | } |
| 888 | |
| 889 | public applyMixin<T extends keyof KnownHandlers>(name: T, MixinClass: any) { |
| 890 | this.withHandlerClass(name, (HandlerClass) => { |
| 891 | this._applyMixin(HandlerClass, MixinClass); |
| 892 | }); |
| 893 | } |
| 894 | |
| 895 | public handlerMixin(MixinClass: Partial<HandlerCommon> | ((s: HandlerCommon) => Partial<HandlerCommon>)) { |
| 896 | return this._applyMixin(HandlerCommon, MixinClass); |
nothing calls this directly
no test coverage detected