Guest User

Untitled

a guest
Feb 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. interface Car {
  2. id: string;
  3. name: string;
  4. }
  5.  
  6. const carsEntity: {[key: string]: Car} = {
  7. 'xyz': { id: 'xyz', name: 'Mazda' },
  8. 'abc': { id: 'abc', name: 'Porsche' }
  9. };
Add Comment
Please, Sign In to add comment