| 41 | export type HarRequest = Omit<NpmHarRequest, 'postData'> & { postData: PostDataBase }; |
| 42 | |
| 43 | export interface RequestExtras { |
| 44 | postData: PostDataBase & { |
| 45 | jsonObj?: ReducedHelperObject; |
| 46 | paramsObj?: ReducedHelperObject; |
| 47 | boundary?: string; |
| 48 | }; |
| 49 | fullUrl: string; |
| 50 | queryObj: ReducedHelperObject; |
| 51 | headersObj: ReducedHelperObject; |
| 52 | uriObj: UrlWithParsedQuery; |
| 53 | cookiesObj: ReducedHelperObject; |
| 54 | allHeaders: ReducedHelperObject; |
| 55 | } |
| 56 | |
| 57 | export type Request = HarRequest & RequestExtras; |
| 58 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…