Brand a type with a unique tag to create nominal typing
type UserID = Brand<number, 'UserID', '__userID', true>;const id: UserID = 123 as UserID; Copy
type UserID = Brand<number, 'UserID', '__userID', true>;const id: UserID = 123 as UserID;
Brand a type with a unique tag to create nominal typing