@promptbook/vercel
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
21 lines (20 loc) • 645 B
TypeScript
/**
* PDF export plugin
*
* @public exported from `@promptbook/components`
*/
export declare const pdfSaveFormatDefinition: {
readonly formatName: "pdf";
readonly label: "Pdf";
readonly getContent: (chatExportData: {
readonly title: string;
readonly messages: readonly import("../../types/ChatMessage").ChatMessage[];
readonly participants: readonly import("../../types/ChatParticipant").ChatParticipant[];
}) => Promise<string>;
readonly mimeType: "application/pdf";
readonly fileExtension: "pdf";
};
/**
* TODO: !!! Add QR code with branding to the footer
* TODO: !!! Add print option
*/