Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. {
  2. "item1": {
  3. "key1": "val1"
  4. "key2": "val2"
  5. "key3": [
  6. "key4": "val4"
  7. "key5": "val5"
  8. ]
  9. },
  10. {
  11. "item2": {
  12. "key1": "val1"
  13. "key2": "val2"
  14. "key3": [
  15. "key3": "val3"
  16. "key4": "val4"
  17. ]
  18. }
  19.  
  20. ... etc ...
  21. }
  22.  
  23. interface MyObj {
  24. key1: string;
  25. key2: string;
  26. key3: string[];
  27. }
  28.  
  29. const myObj[]: {string: Myobj[]} = JSON.parse(response);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement