@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
18 lines (17 loc) • 351 B
TypeScript
import { ListNode } from "./list-node";
import { ListNodeInfo } from "./list-node-info";
/**
* Represents a list.
*
* @category Model Admin
*/
export declare class List {
/**
* The child nodes of this list node.
*/
children: ListNode[];
/**
* Provides information about a list.
*/
listinfo: ListNodeInfo;
}