@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
21 lines (20 loc) • 681 B
TypeScript
/**
* HTML export plugin
*
* @public exported from `@promptbook/components`
*/
export declare const htmlSaveFormatDefinition: {
readonly formatName: "html";
readonly label: "Html";
readonly getContent: ({ messages }: {
readonly title: string;
readonly messages: readonly import("../../types/ChatMessage").ChatMessage[];
readonly participants: readonly import("../../types/ChatParticipant").ChatParticipant[];
}) => string;
readonly mimeType: "text/html";
readonly fileExtension: "html";
};
/**
* TODO: !!! Add QR code with branding to the footer
* TODO: [😬] Take chat save to HTML from existing parallel implementation
*/