Trilium Frontend API
    Preparing search index...

    Interface DownloadPDF

    interface DownloadPDF {
        autoTable?: {} | ((doc: any) => any);
        documentProcessing?: (doc: any) => any;
        jsPDF?: any;
        orientation?: "portrait" | "landscape";
        rowCalcStyles?: any;
        rowGroupStyles?: any;
        title?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    autoTable?: {} | ((doc: any) => any)
    documentProcessing?: (doc: any) => any

    An optional callback documentProcessing can be set on the download config object, that is passed the jsPDF document object after the auto-table creation to allow full customization of the PDF

    jsPDF?: any
    orientation?: "portrait" | "landscape"
    rowCalcStyles?: any
    rowGroupStyles?: any
    title?: string