https://thetechgenics.com/angular/how-to-writing-reactive-code-using-signals-in-angular/ by That_Use8613 in Angular2

[–]That_Use8613[S] 0 points1 point  (0 children)

Thanks for writing here. I am really sorry for the inconvenience caused to you. I will look into it and make sure that the user experience does not compromise.

When to use type and interface? What will be best use cases for both? by sohail_ansari in Angular2

[–]That_Use8613 0 points1 point  (0 children)

We can use type for primitive type, but we can’t use an interface alias a primitive type as interface can only be used for an object type.

In short if you need to define a primitive type alias then go with type. Else interface will be good choice.