UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

10 lines (9 loc) 314 B
import { FetchOptionsInput } from './fetchOptions.js'; import { FetchResponse } from './fetchResponse.js'; export interface NetworkClient { /** * @param {FetchOptionsInput} optionsInput * @returns {Promise<FetchResponse>} */ fetch(optionsInput: FetchOptionsInput): Promise<FetchResponse>; }