(path: string, options?: ApiMethodOptions)
| 14 | |
| 15 | export interface ApiExtension { |
| 16 | get(path: string, options?: ApiMethodOptions): Promise<Response> |
| 17 | post(path: string, options?: ApiMethodOptions): Promise<Response> |
| 18 | put(path: string, options?: ApiMethodOptions): Promise<Response> |
| 19 | patch(path: string, options?: ApiMethodOptions): Promise<Response> |
no outgoing calls