contensis-management-api
Version:
Client for managing content using the Contensis Management API
9 lines (8 loc) • 312 B
TypeScript
import { Optional } from '../utils';
import { TagGroup } from './TagGroup';
/**
* A TagGroup-like interface containing required properties to update an existing TagGroup
* and all other properties are optional
*/
export interface IUpdateTagGroup extends Optional<TagGroup, 'tagCount' | 'version'> {
}