Hex Core JS
    Preparing search index...

    Type Alias ToastContextValue

    type ToastContextValue = {
        addToast: (
            render: ToastInformation["render"],
            timeoutMS: ToastInformation["timeoutMS"],
            id?: ToastInformation["id"],
        ) => ToastInformation["id"];
        removeToast: (id: ToastInformation["id"]) => void;
    }
    Index

    Properties

    addToast: (
        render: ToastInformation["render"],
        timeoutMS: ToastInformation["timeoutMS"],
        id?: ToastInformation["id"],
    ) => ToastInformation["id"]
    removeToast: (id: ToastInformation["id"]) => void