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