contentful-management
Version:
Client for Contentful's Content Management API
13 lines (12 loc) • 791 B
TypeScript
import type { RestEndpoint } from '../types';
export declare const create: RestEndpoint<'Concept', 'create'>;
export declare const createWithId: RestEndpoint<'Concept', 'createWithId'>;
export declare const patch: RestEndpoint<'Concept', 'patch'>;
export declare const update: RestEndpoint<'Concept', 'update'>;
export declare const updatePut: RestEndpoint<'Concept', 'updatePut'>;
export declare const get: RestEndpoint<'Concept', 'get'>;
export declare const del: RestEndpoint<'Concept', 'delete'>;
export declare const getMany: RestEndpoint<'Concept', 'getMany'>;
export declare const getDescendants: RestEndpoint<'Concept', 'getDescendants'>;
export declare const getAncestors: RestEndpoint<'Concept', 'getAncestors'>;
export declare const getTotal: RestEndpoint<'Concept', 'getTotal'>;