contentful-management
Version:
Client for Contentful's Content Management API
8 lines (7 loc) • 423 B
TypeScript
import type { RestEndpoint } from '../types';
export declare const get: RestEndpoint<'Team', 'get'>;
export declare const getMany: RestEndpoint<'Team', 'getMany'>;
export declare const getManyForSpace: RestEndpoint<'Team', 'getManyForSpace'>;
export declare const create: RestEndpoint<'Team', 'create'>;
export declare const update: RestEndpoint<'Team', 'update'>;
export declare const del: RestEndpoint<'Team', 'delete'>;