All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ducks.alerts.Alerts.d.ts Maven / Gradle / Ivy

The newest version!
import { Key, Severity, PLACEMENT } from './constants'

export interface Alert {
    id: string
    title?: string
    severity: Severity
    text?: string
    timeout?: number
    closeButton: boolean
    placement: PLACEMENT
    stopped?: boolean
    modelLink?: string
}

export interface Config {
    timeout: {
        error: number
        info: number
        success: number
        warning: number
    }
}

export type State = Partial>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy