Trilium Electron API
    Preparing search index...

    Interface NativeExportResult

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

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

    message?: string

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

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