@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
22 lines (21 loc) • 809 B
TypeScript
import type { string_html } from '../../types/string_markdown';
/**
* Prettify the html code
*
* @param content raw html code
* @returns formatted html code
* @deprecated Prettier removed from Promptbook due to package size
*
* @private withing the package because of HUGE size of prettier dependency
*/
export declare function prettifyMarkdown<TContent extends string_html>(content: TContent): TContent;
/**
* Async version of prettifyMarkdown using dynamic imports
*
* @param content raw html code
* @returns formatted html code
* @deprecated Prettier removed from Promptbook due to package size
*
* @private withing the package because of HUGE size of prettier dependency
*/
export declare function prettifyMarkdownAsync<TContent extends string_html>(content: TContent): Promise<TContent>;