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