stimulsoft-viewer-angular
Version:
The Viewer component is designed to view reports and dashboards in the web browser.
22 lines (21 loc) • 1.11 kB
TypeScript
import { OnInit, ElementRef, AfterViewInit } from '@angular/core';
import { ModelService } from '../services/model.service';
import { ToolbarService } from '../services/toolbar.service';
import { ControllerService } from '../services/controller.service';
import { ComponentDescription } from '../services/objects';
import * as i0 from "@angular/core";
export declare class ToolbarDopComponent implements OnInit, AfterViewInit {
model: ModelService;
controller: ControllerService;
toolbarService: ToolbarService;
mainTable: ElementRef;
comps: ComponentDescription[];
align: string;
marginLeft: string;
viewInit: boolean;
constructor(model: ModelService, controller: ControllerService, toolbarService: ToolbarService);
ngAfterViewInit(): void;
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarDopComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ToolbarDopComponent, "sti-toolbar-dop", never, { "comps": { "alias": "comps"; "required": false; }; "align": { "alias": "align"; "required": false; }; }, {}, never, never, false, never>;
}