Индексируемый тип в TS

//Indexable type Typescript 
interface ListItem {
  [prop: string ] : string | number ;
}

const List: ListItem = {
  name: "joyous jackal" ;
  email: "joyous@jackal.com";
  age: 21 ;
}
Joyous Jackal