stimulsoft-viewer-angular
Version:
The Viewer component is designed to view reports and dashboards in the web browser.
23 lines (22 loc) • 1.13 kB
TypeScript
import { OnInit, AfterViewInit, ElementRef } from '@angular/core';
import { ModelService } from '../services/model.service';
import { ControllerService } from '../services/controller.service';
import { Resource } from '../services/objects';
import { HelperService } from '../services/helper.service';
import { MenuItem } from '../menu/meni-item.component';
import * as i0 from "@angular/core";
export declare class ResourcesPanelComponent implements OnInit, AfterViewInit {
model: ModelService;
controller: ControllerService;
helper: HelperService;
element: ElementRef;
constructor(model: ModelService, controller: ControllerService, helper: HelperService);
ngOnInit(): void;
ngAfterViewInit(): void;
action(resource: Resource): void;
getResourceImage(resourceType: string): string;
getMenuItems(resource: Resource): MenuItem[];
getActionName(resource: Resource): string;
static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesPanelComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<ResourcesPanelComponent, "sti-resources-panel", never, {}, {}, never, never, false, never>;
}