Interface NotificationOptions

interface NotificationOptions {
    closable?: boolean;
    dur?: number;
    off?: Offset;
    pos?: string;
    ref?: Widget<HTMLElement>;
    type?: "warning" | "info" | "error";
}

Properties

closable?: boolean
dur?: number
off?: Offset
pos?: string
ref?: Widget<HTMLElement>
type?: "warning" | "info" | "error"