@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
10 lines (9 loc) • 338 B
TypeScript
import type { string_html } from '../../types/typeAliases';
/**
* Prettify the html code
*
* @param content raw html code
* @returns formatted html code
* @private withing the package because of HUGE size of prettier dependency
*/
export declare function prettifyMarkdown<TContent extends string_html>(content: TContent): TContent;