stimulsoft-viewer-angular
Version:
The Viewer component is designed to view reports and dashboards in the web browser.
17 lines (16 loc) • 833 B
TypeScript
import { OnInit, ElementRef, AfterViewInit } from '@angular/core';
import { ModelService } from '../services/model.service';
import { ControllerService } from '../services/controller.service';
import { ToolbarService } from '../services/toolbar.service';
import * as i0 from "@angular/core";
export declare class ToolbarComponent implements OnInit, AfterViewInit {
model: ModelService;
controller: ControllerService;
toolbarService: ToolbarService;
element: ElementRef;
constructor(model: ModelService, controller: ControllerService, toolbarService: ToolbarService);
ngAfterViewInit(): void;
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarComponent, "sti-toolbar", never, {}, {}, never, never, false, never>;
}