@carbon/charts
Version:
Carbon Charts component library
17 lines (16 loc) • 550 B
TypeScript
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;
handleEscapeKey: (event: any) => void;
handleHideModal: () => void;
addEventListeners(): void;
removeEventListeners(): void;
getModalHTML(): string;
render(animate?: boolean): void;
destroy(): void;
}