UNPKG

@promptbook/remote-server

Version:

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

17 lines (16 loc) 568 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[]; }) => Uint8Array; readonly mimeType: "application/pdf"; readonly fileExtension: "pdf"; };