UNPKG

theme-lib

Version:

This is a simple example Angular Library published to npm.

15 lines (14 loc) 344 B
import { NbToastrConfig } from './toastr-config'; export declare enum NbToastStatus { SUCCESS = "success", INFO = "info", WARNING = "warning", PRIMARY = "primary", DANGER = "danger", DEFAULT = "default" } export declare class NbToast { title: string; message: string; config: NbToastrConfig; }