(component: string | number)
| 118 | // Generic endpoint composition |
| 119 | |
| 120 | private addPathComponent(component: string | number): ApiRequest { |
| 121 | this.pathComponents.push(component.toString()) |
| 122 | return this |
| 123 | } |
| 124 | |
| 125 | public withQueryString(queryString?: string): ApiRequest { |
| 126 | this.queryString = queryString |
no test coverage detected