UNPKG

@dasch-swiss/dsp-js

Version:
18 lines 401 B
import { ListNode } from './list-node'; import { ListNodeInfo } from './list-node-info'; /** * Represents a list. * * @category Model Admin */ export declare class ListChildNode { /** * The child nodes of this list node. */ children: ListNode[]; /** * Provides information about a list. */ nodeinfo: ListNodeInfo; } //# sourceMappingURL=list-child-node.d.ts.map