@knora/api
Version:
JavaScript library that handles API requests to Knora
16 lines (15 loc) • 323 B
TypeScript
import { ListNode } from "./list-node";
import { ListNodeInfo } from "./list-node-info";
/**
* Represents a list.
*/
export declare class List {
/**
* The child nodes of this list node.
*/
children: ListNode[];
/**
* Provides information about a list.
*/
listinfo: ListNodeInfo;
}