bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
18 lines (17 loc) • 553 B
TypeScript
export declare class BitMessage {
title: string;
message: string;
width: number;
height: number;
modal: boolean;
severity: string;
masInfo?: string;
json: boolean;
static WIDTH: number;
static INFO: string;
static WARN: string;
static ERROR: string;
constructor(title: string, message: string, width?: number, height?: number, modal?: boolean, severity?: string, //info, warn, error
masInfo?: string, json?: boolean);
static newMessage(title: any, message: any, severity?: any): BitMessage;
}