contentful-management
Version:
Client for Contentful's Content Management API
11 lines (10 loc) • 469 B
TypeScript
import type { RestEndpoint } from '../types';
export declare const get: RestEndpoint<'Comment', 'get'>;
export declare const getMany: RestEndpoint<'Comment', 'getMany'>;
export declare const create: RestEndpoint<'Comment', 'create'>;
export declare const update: RestEndpoint<'Comment', 'update'>;
export declare const del: RestEndpoint<'Comment', 'delete'>;
/**
* @deprecated use `getMany` instead.
*/
export declare const getAll: RestEndpoint<'Comment', 'getAll'>;