I like to use the abstract classes typescript feature as interfaces so I can use it as a token for the provider as well and avoid the @Inject() decorator. For example:
@Inject()
export abstract class IUserService { abstract getUserById(id: string): Promise<User>; } export class UserService implements IUserService { getUserById(id: string): Promise<User> { // ... } } @Module({ providers: [ { provide: IUserService, useClass: UserService, } ] }) export class AppModule { constructor(private readonly userService: IUserService) {} }
Good point, I didn’t think of it before — thanks! But I want to clarify something : For the Abstract Classes : ✖ Cons:
For the Interfaces : ✔ Pros:
Some comments have been hidden by the post's author - find out more
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
I like to use the abstract classes typescript feature as interfaces so I can use it as a token for the provider as well and avoid the
@Inject()decorator. For example:Good point, I didn’t think of it before — thanks!
But I want to clarify something :
For the Abstract Classes :
✖ Cons:
For the Interfaces :
✔ Pros: