Guest User

Untitled

a guest
Jan 17th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. .then((response: HttpClientResponse): Promise<JSON> => {
  2. console.log(response.json());
  3. return response.json();
  4. } console.log(JSON);)
  5. .then((responseJSON: JSON): void => {
  6.  
  7. var claimsTable = this.domElement.getElementsByClassName("azFuncClaimsTable")[0];
  8. for (var key in responseJSON) {
  9. console.log(key);
  10.  
  11. }
  12. });
Add Comment
Please, Sign In to add comment