torque-pro-assistant - v1.0.0
    Preparing search index...

    Interface ToastApi

    interface ToastApi {
        clear: () => void;
        dismiss: (id: number) => void;
        error: (
            title: string,
            rest?: Omit<ToastOptions, "kind" | "title">,
        ) => number;
        info: (
            title: string,
            rest?: Omit<ToastOptions, "kind" | "title">,
        ) => number;
        success: (
            title: string,
            rest?: Omit<ToastOptions, "kind" | "title">,
        ) => number;
        warning: (
            title: string,
            rest?: Omit<ToastOptions, "kind" | "title">,
        ) => number;
        (opts: ToastOptions): number;
    }
    Index

    Properties

    clear: () => void
    dismiss: (id: number) => void
    error: (title: string, rest?: Omit<ToastOptions, "kind" | "title">) => number
    info: (title: string, rest?: Omit<ToastOptions, "kind" | "title">) => number
    success: (title: string, rest?: Omit<ToastOptions, "kind" | "title">) => number
    warning: (title: string, rest?: Omit<ToastOptions, "kind" | "title">) => number