@promptbook/vercel
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
17 lines (16 loc) • 548 B
TypeScript
/**
* Markdown export plugin
*
* @public exported from `@promptbook/components`
*/
export declare const mdSaveFormatDefinition: {
readonly formatName: "md";
readonly label: "Markdown";
readonly getContent: ({ messages }: {
readonly title: string;
readonly messages: readonly import("../../types/ChatMessage").ChatMessage[];
readonly participants: readonly import("../../types/ChatParticipant").ChatParticipant[];
}) => string;
readonly mimeType: "text/markdown";
readonly fileExtension: "md";
};