| 146 | ) => Promise<PrismOutput>; |
| 147 | |
| 148 | interface IRequestFunctionWithMethod { |
| 149 | ( |
| 150 | this: PrismHttp, |
| 151 | url: string, |
| 152 | input: Required<Pick<IHttpRequest, 'headers'>>, |
| 153 | config?: Partial<IClientConfig> |
| 154 | ): Promise<PrismOutput>; |
| 155 | |
| 156 | (this: PrismHttp, url: string, config?: Partial<IClientConfig>): Promise<PrismOutput>; |
| 157 | } |
| 158 | |
| 159 | interface IRequestFunctionWithMethodWithBody { |
| 160 | ( |
nothing calls this directly
no outgoing calls
no test coverage detected