@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
11 lines (10 loc) • 454 B
TypeScript
import type { string_markdown } from '../../types/string_markdown';
/**
* Change ellipsis characters and dot leaders to three dots `…` -> `...`
*
* Note: [🔂] This function is idempotent.
* Tip: If you want to do the full cleanup, look for `humanizeAiText` exported `@promptbook/markdown-utils`
*
* @public exported from `@promptbook/markdown-utils`
*/
export declare function humanizeAiTextEllipsis(aiText: string_markdown): string_markdown;