UNPKG

mwcpl

Version:

Master's Web Component Pattern Library

14 lines (13 loc) 360 B
import { ComponentInterface } from '../../stencil-public-runtime'; export declare class MwcplNotification implements ComponentInterface { /** * The text of the notification. */ label: string; /** * Makes the notification visible. */ show: boolean; render(): any; handleClick(event: MouseEvent): void; }