UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

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