mwcpl
Version:
Master's Web Component Pattern Library
19 lines (18 loc) • 483 B
TypeScript
import { ComponentInterface } from '../../stencil-public-runtime';
export declare class MwcplDialog implements ComponentInterface {
/**
* The title of the dialog.
*/
heading: string;
/**
* Controls the visibility of the dialog.
*/
open: boolean;
/**
* Dismisses the dialog by clicking on the backdrop.
*/
dismissable: boolean;
render(): any;
dismiss(): void;
handleClick(event: MouseEvent): void;
}