UNPKG

zelement

Version:

## Project setup ``` npm install ```

10 lines (7 loc) 262 B
import { ZElemntComponent } from './component' export type AlertType ='success' | 'warning' | 'info' | 'error'; export type AlertEffect = 'dark' | 'light'; export declare class ZAlert extends ZElemntComponent { title:string; type:AlertType; }