package.dist.components.essentials.modal.d.ts Maven / Gradle / Ivy
import { Component } from '../component';
import { ChartModel } from '../../model/model';
export declare class Modal extends Component {
type: string;
isEventListenerAdded: boolean;
modal: any;
constructor(model: ChartModel, services: any, configs?: any);
handleShowModal: () => void;
handleHideModal: () => void;
addEventListeners(): void;
removeEventListeners(): void;
getModalHTML(): string;
render(animate?: boolean): void;
destroy(): void;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy