@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
33 lines (32 loc) • 694 B
TypeScript
import { StringLiteral } from "./string-literal";
/**
* Information about a child node.
*
* @category Model Admin
*/
export declare class ChildNodeInfo {
/**
* The comments attached to the enclosing object.
*/
comments: StringLiteral[];
/**
* The IRI of the root node of the list that this node belongs to.
*/
hasRootNode?: string;
/**
* The ID of the enclosing object.
*/
id: string;
/**
* The labels attached to the enclosing object.
*/
labels: StringLiteral[];
/**
* The name of the enclosing object.
*/
name?: string;
/**
* The position of a child node.
*/
position?: number;
}