contensis-management-api
Version:
Client for managing content using the Contensis Management API
9 lines (8 loc) • 310 B
TypeScript
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'> {
}