contentful-management
Version:
Client for Contentful's Content Management API
14 lines (13 loc) • 331 B
TypeScript
/**
* @packageDocumentation
* @hidden
*/
import type { Adapter } from './common-types';
import type { RestAdapterParams } from './adapters/REST/rest-adapter';
export type AdapterParams = {
apiAdapter: Adapter;
};
/**
* @private
*/
export declare function createAdapter(params: RestAdapterParams | AdapterParams): Adapter;