Consider this scenario where an EmployeeDTO type is defined with properties like firstName
, lastName
, and dateOfBirth
using Date
type EmployeeDTO = {
firstName: string
lastName: string;
dateOfBirth: Date;
}
Now, we need a utility type that can transform all properties of type Date
to be of type moment
type EmployeeDTO = {
firstName: string
lastName: string;
dateOfBirth: moment;
}