iWebRequest.d.ts 338 B

1234567891011121314151617
  1. /**
  2. * Interface used to define the mechanism to get data from the network
  3. */
  4. export interface IWebRequest {
  5. /**
  6. * Returns client's response url
  7. */
  8. responseURL: string;
  9. /**
  10. * Returns client's status
  11. */
  12. status: number;
  13. /**
  14. * Returns client's status as a text
  15. */
  16. statusText: string;
  17. }