@ringcentral/sdk
Version:
- [Installation](#installation) - [Getting Started](#getting-started) - [API Calls](#api-calls) - [Advanced SDK Configuration & Polyfills](#advanced-sdk-configuration--polyfills) - [Making telephony calls](#making-telephony-calls) - [Call management using
16 lines (12 loc) • 323 B
text/typescript
import DomStorage from 'dom-storage';
import fetch, {Request, Response, Headers} from 'node-fetch';
import {setDefaultExternals} from './SDK';
export * from './SDK';
const localStorage = new DomStorage(null, {strict: true});
setDefaultExternals({
localStorage,
fetch,
Request,
Response,
Headers,
});