| 129 | export type Query = Record<QueryItem, QueryItem | QueryItem[] | undefined>; |
| 130 | |
| 131 | interface QueryString { |
| 132 | parse(search: string): Query; |
| 133 | |
| 134 | stringify(query: Query): string; |
| 135 | } |
| 136 | |
| 137 | // ==== ./src/request.js ==== |
| 138 |
no outgoing calls
no test coverage detected