UNPKG

contensis-management-api

Version:

Client for managing content using the Contensis Management API

10 lines (8 loc) 313 B
import { Optional } from '../utils'; import { Node } from './Node'; /** * A Node-like interface containing required properties to update an * existing Node and all other properties are optional */ export interface IUpdateNode extends Optional<Node, 'childCount' | 'path' | 'proxy' | 'renderer'> {}