UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

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