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: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/.trash/node_modules/vue-snotify/toastDefaults.d.ts
import { SnotifyPosition } from './enums';
/**
 * Snotify default configuration object
 * @type {SnotifyDefaults}
 */
export declare const ToastDefaults: {
    global: {
        newOnTop: boolean;
        maxOnScreen: number;
        maxAtPosition: number;
        oneAtTime: boolean;
        preventDuplicates: boolean;
    };
    toast: {
        type: "simple" | "success" | "error" | "warning" | "info" | "async" | "confirm" | "prompt";
        showProgressBar: boolean;
        timeout: number;
        closeOnClick: boolean;
        pauseOnHover: boolean;
        bodyMaxLength: number;
        titleMaxLength: number;
        backdrop: number;
        icon: any;
        html: any;
        position: SnotifyPosition;
        animation: {
            enter: string;
            exit: string;
            time: number;
        };
    };
    type: {
        [x: string]: {
            timeout: number;
            closeOnClick: boolean;
            buttons: {
                text: string;
                action: any;
                bold: boolean;
            }[];
            placeholder: string;
            type: "simple" | "success" | "error" | "warning" | "info" | "async" | "confirm" | "prompt";
            pauseOnHover?: undefined;
            showProgressBar?: undefined;
        } | {
            timeout: number;
            closeOnClick: boolean;
            buttons: {
                text: string;
                action: any;
                bold: boolean;
            }[];
            type: "simple" | "success" | "error" | "warning" | "info" | "async" | "confirm" | "prompt";
            placeholder?: undefined;
            pauseOnHover?: undefined;
            showProgressBar?: undefined;
        } | {
            type: "simple" | "success" | "error" | "warning" | "info" | "async" | "confirm" | "prompt";
            timeout?: undefined;
            closeOnClick?: undefined;
            buttons?: undefined;
            placeholder?: undefined;
            pauseOnHover?: undefined;
            showProgressBar?: undefined;
        } | {
            pauseOnHover: boolean;
            closeOnClick: boolean;
            timeout: number;
            showProgressBar: boolean;
            type: "simple" | "success" | "error" | "warning" | "info" | "async" | "confirm" | "prompt";
            buttons?: undefined;
            placeholder?: undefined;
        };
    };
};