TypeScript - Types and Interfaces which I use in day-to-day project work
Syntax
----
TYPE
----
type TUser = {
userId: string,
name: string,
phoneNumber: string,
userType: string
}
---------
INTERFACE
---------
interface IUser {
userId: string,
name: string,
phoneNumber: string,
userType...
krius2023.hashnode.dev1 min read