UNPKG

contensis-management-api

Version:

Client for managing content using the Contensis Management API

8 lines (7 loc) 272 B
import { TagGroup } from './TagGroup'; /** * A TagGroup-like interface containing required properties to create a new TagGroup * and all other properties are omitted entirely */ export interface ICreateTagGroup extends Omit<TagGroup, 'tagCount' | 'version'> { }