UNPKG

@promptbook/google

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

22 lines (21 loc) 653 B
import type { ChatMessage } from '../../types/ChatMessage'; import type { ChatParticipant } from '../../types/ChatParticipant'; /** * HTML export plugin * * @public exported from `@promptbook/components` */ export declare const htmlSaveFormatDefinition: { readonly formatName: "html"; readonly label: "Html"; readonly getContent: ({ title, messages, participants }: { readonly title: string; readonly messages: readonly ChatMessage[]; readonly participants: readonly ChatParticipant[]; }) => string; readonly mimeType: "text/html"; readonly fileExtension: "html"; }; /** * TODO: Enhance branding */