Base interface for service mapping. Extend this interface to define your service types.
interface MyServiceMap extends ServiceMap { userService: UserService; logger: Logger;} Copy
interface MyServiceMap extends ServiceMap { userService: UserService; logger: Logger;}
Base interface for service mapping. Extend this interface to define your service types.
Example