@nova-ui/dashboards
Version:
Nova Dashboards is a framework designed to provide feature developers with a common solution for presenting data coming from various sources within a single view, as well as a set of predefined widget visualizations that are 100% configuration-driven and
20 lines (19 loc) • 1.03 kB
TypeScript
import { EventBus, IEvent, LoggerService } from "@nova-ui/bits";
import { IInteractionHandlerProperties, IInteractionPayload, InteractionHandler } from "./interaction-handler";
import { UrlInteractionService } from "../../../services/url-interaction.service";
import * as i0 from "@angular/core";
export interface IUrlInteractionHandlerProperties extends IInteractionHandlerProperties {
url: string;
newWindow?: boolean;
}
export declare class WindowObject extends Window {
}
export declare class UrlInteractionHandler extends InteractionHandler<IUrlInteractionHandlerProperties, any> {
private window;
private logger;
private urlInteractionService;
constructor(eventBus: EventBus<IEvent>, window: WindowObject, logger: LoggerService, urlInteractionService: UrlInteractionService);
protected handleInteraction(interaction: IInteractionPayload<any>): void;
static ɵfac: i0.ɵɵFactoryDeclaration<UrlInteractionHandler, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<UrlInteractionHandler>;
}