MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/.trash/node_modules/vue-snotify/interfaces/SnotifyGlobalConfig.interface.d.ts
/**
 * Toast dock configuration
 */
export interface SnotifyGlobalConfig {
    /**
     * Max toast items on screen.
     *
     * > For example you want to display 3 toasts max at the time. But for some purposes your system calls it 10 times.
     * >
     * > With this option, 3 toast will be shown. And after each of it will disappear, new toast from the queue will be shown.
     * @type {number}
     * @default 8
     */
    maxOnScreen?: number;
    /**
     * Max toast items at position.
     *
     * Same as maxOnScreen, but affects only current toast position (like rightBottom)
     * @type {number}
     * @default 8
     */
    maxAtPosition?: number;
    /**
     * Should new items come from top or bottom side.
     *
     * > This option created for styling purposes.
     * >
     * > For example, if your toast position is TOP-RIGHT. Its not very nice, when items comes from top and pulls down all other toasts
     * @type {number}
     * @default true
     */
    newOnTop?: boolean;
    /**
     * Only one toast in the queue
     * @type {boolean}
     * @default false
     */
    oneAtTime?: boolean;
    /**
     * Only one toast type in the queue
     * @type {boolean}
     * @default false
     */
    preventDuplicates?: boolean;
}