UNPKG

@progress/telerik-common-report-viewer

Version:

Common code for Progress® Telerik® Report Viewer

12 lines (11 loc) 449 B
/** Represents an action associated with a page in a report. */ export declare class PageAction { /** Unique identifier for the action. */ Id: string; /** The name of the report item associated with the action. */ ReportItemName: string; /** The type of the action (e.g., drilldown, toggle visibility, etc.). */ Type: string; /** An object containing additional parameters for the action. */ Value: any; }