contensis-management-api
Version:
Client for managing content using the Contensis Management API
21 lines (19 loc) • 443 B
text/typescript
import { Optional } from '../utils';
import { Node } from './Node';
/**
* A Node-like interface containing required properties to create a new Node
* and all other properties are optional
*/
export interface ICreateNode
extends Optional<
Node,
| 'childCount'
| 'id'
| 'includeInMenu'
| 'isCanonical'
| 'path'
| 'proxy'
| 'renderer'
| 'restrictedToLanguages'
| 'version'
> {}