UNPKG

331 BTypeScriptView Raw
1/**
2 * @packageDocumentation
3 * @hidden
4 */
5import type { Adapter } from './common-types';
6import type { RestAdapterParams } from './adapters/REST/rest-adapter';
7export type AdapterParams = {
8 apiAdapter: Adapter;
9};
10/**
11 * @private
12 */
13export declare function createAdapter(params: RestAdapterParams | AdapterParams): Adapter;