contentful-management
Version:
Client for Contentful's Content Management API
9 lines (8 loc) • 397 B
TypeScript
import type { MakeRequest } from '../common-types';
import type { PlainClientAPI } from './plain-client-types';
import type { PlainClientDefaultParams } from './wrappers/wrap';
export type { PlainClientDefaultParams } from './wrappers/wrap';
/**
* @internal
*/
export declare const createPlainClient: (makeRequest: MakeRequest, defaults: PlainClientDefaultParams | undefined) => PlainClientAPI;