UNPKG

@promptbook/utils

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

17 lines (16 loc) 577 B
/** * PDF export plugin * * @public exported from `@promptbook/components` */ export declare const pdfSaveFormatDefinition: { readonly formatName: "pdf"; readonly label: "PDF"; readonly getContent: ({ title, messages, participants }: { readonly title: string; readonly messages: readonly import("../../types/ChatMessage").ChatMessage[]; readonly participants: readonly import("../../types/ChatParticipant").ChatParticipant[]; }) => Promise<Uint8Array>; readonly mimeType: "application/pdf"; readonly fileExtension: "pdf"; };