UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

10 lines 351 B
import { FetchOptionsInput } from './fetchOptions'; import { FetchResponse } from './fetchResponse'; export interface NetworkClient { /** * @param {FetchOptionsInput} optionsInput * @returns {Promise<FetchResponse>} */ fetch(optionsInput: FetchOptionsInput): Promise<FetchResponse>; } //# sourceMappingURL=networkClient.d.ts.map