@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
17 lines (16 loc) • 380 B
TypeScript
/**
* A request to reposition a child node.
*
* @category Model Admin
*/
export declare class RepositionChildNodeRequest {
/**
* The IRI of the parent node which the child node will be moved to.
*/
parentNodeIri: string;
/**
* The position the child node should be moved to.
* -1 represents the end of the list.
*/
position: number;
}