Trilium Electron API
    Preparing search index...

    Interface NativeExportResult

    interface NativeExportResult {
        filePath?: string;
        message?: string;
        status: "cancelled" | "error" | "saved";
    }
    Index
    filePath?: string

    Absolute path the archive was written to (when status === "saved").

    message?: string

    Failure detail (when status === "error").

    status: "cancelled" | "error" | "saved"