UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

15 lines 462 B
import { FetchOptions } from './fetchOptions.js'; import { FetchResponse } from './fetchResponse.js'; export interface Interceptor { /** * @param {FetchOptions} options * @returns {FetchOptions} */ beforeRequest(options: FetchOptions): FetchOptions; /** * @param {FetchResponse} response * @returns {FetchResponse} */ afterRequest(response: FetchResponse): FetchResponse; } //# sourceMappingURL=interceptors.d.ts.map