stimulsoft-viewer-angular
Version:
The Viewer component is designed to view reports and dashboards in the web browser.
20 lines (19 loc) • 998 B
TypeScript
import { OnInit, ElementRef, AfterViewInit } from '@angular/core';
import { ModelService } from '../services/model.service';
import { DrillDownService } from '../services/drill-down.service';
import { ControllerService } from '../services/controller.service';
import { DrillDown } from '../services/objects';
import * as i0 from "@angular/core";
export declare class DrillDownPanelComponent implements OnInit, AfterViewInit {
model: ModelService;
drillDownService: DrillDownService;
controller: ControllerService;
element: ElementRef;
constructor(model: ModelService, drillDownService: DrillDownService, controller: ControllerService);
ngOnInit(): void;
ngAfterViewInit(): void;
action(button: DrillDown): void;
close(button: DrillDown): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DrillDownPanelComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<DrillDownPanelComponent, "sti-drill-down-panel", never, {}, {}, never, never, false, never>;
}