Doron Guttman
Results
2
comments of
Doron Guttman
I had the same requirement and found a workaround: ```typescript // components/base.ts export abstract class BaseClass { } ``` ```typescript // components/impl1.ts import { Provides } from "typescript-ioc"; import {...
I had the same issue. Based on @StrahilKazlachev's comment, I have added the following line in my `navigationStrategy` code: `delete instruction.config.viewPorts;` here's my complete code: ```typescript private dynamicRouter(instruction: NavigationInstruction) {...