@tauri-apps/plugin-dialog - v2.3.1
    Preparing search index...

    Interface ConfirmDialogOptions

    interface ConfirmDialogOptions {
        title?: string;
        kind?: "info" | "warning" | "error";
        okLabel?: string;
        cancelLabel?: string;
    }
    Index

    Properties

    title?: string

    The title of the dialog. Defaults to the app name.

    kind?: "info" | "warning" | "error"

    The kind of the dialog. Defaults to info.

    okLabel?: string

    The label of the confirm button.

    cancelLabel?: string

    The label of the cancel button.