@progress/telerik-common-report-viewer
Version:
Common code for Progress® Telerik® Report Viewer
12 lines (11 loc) • 414 B
TypeScript
/** A bookmark node representing a node in the bookmark hierarchy. */
export declare class BookmarkNode {
/** Unique identifier for the bookmark node. */
id: string;
/** The text content of the bookmark node. */
text: string;
/** The page number associated with the bookmark node. */
page: number;
/** An array of child bookmark nodes. */
items: BookmarkNode[] | null;
}