| 105 | } |
| 106 | |
| 107 | export interface /*record*/ HTTPRequest { |
| 108 | url: any; |
| 109 | method: any; |
| 110 | headers: any; |
| 111 | body?: Uint8Array; |
| 112 | /** Between 0 being lowest, to 10 being maximum */ |
| 113 | priority: number; |
| 114 | } |
| 115 | |
| 116 | export interface /*record*/ HTTPResponse { |
| 117 | statusCode: number; |
no outgoing calls
no test coverage detected