box-node-sdk
Version:
Official SDK for Box Platform APIs
11 lines (10 loc) • 345 B
text/typescript
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>;
}