stimulsoft-viewer-angular
Version:
The Viewer component is designed to view reports and dashboards in the web browser.
22 lines (21 loc) • 898 B
TypeScript
import { OnInit, ElementRef } from '@angular/core';
import { ModelService } from '../services/model.service';
import { ControllerService } from '../services/controller.service';
import { HelperService } from '../services/helper.service';
import * as i0 from "@angular/core";
export declare class CenterTextComponent implements OnInit {
model: ModelService;
controller: ControllerService;
helper: HelperService;
element: ElementRef;
text: string;
opacity: number;
display: string;
private hideTimer;
constructor(model: ModelService, controller: ControllerService, helper: HelperService);
ngOnInit(): void;
show(text: string): void;
hide(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CenterTextComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CenterTextComponent, "sti-center-text", never, {}, {}, never, never, false, never>;
}