UNPKG

@progress/telerik-common-report-viewer

Version:

Common code for Progress® Telerik® Report Viewer

16 lines (15 loc) 603 B
/** A document map node representing a node in the document map hierarchy. */ export declare class DocumentMapNode { /** Unique identifier for the document map node. */ id: string; /** Indicates whether the node is expanded in the document map. */ isExpanded: boolean; /** The label of the document map node. */ label: string; /** The text content of the document map node. */ text: string; /** The page number associated with the document map node. */ page: number; /** An array of child document map nodes. */ items: DocumentMapNode[]; }