Interface NotificationArgs

interface NotificationArgs {
    position?: NotificationPosition;
    timeout?: number;
    title: string;
    variant?: NotificationVariant;
}

Properties

Position from which notification should appear.

timeout?: number

Number of milliseconds the notification should be shown.

title: string

Title of the notification, the message to be shown.

Variant(texture) of the notification

Generated using TypeDoc