I need to have a type act like this exam
type uniqueArrayType = string[] // code here ;
const myUniqueArray :uniqueArrayType = ['string 1','string 2'] // will fit the type
const myUniqueArray2 :uniqueArrayType = ['str','str'] // will not fit the type