@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
15 lines (14 loc) • 503 B
TypeScript
import type { string_markdown } from '../../types/typeAliases';
import type { string_name } from '../../types/typeAliases';
/**
* Add or modify an auto-generated section in a markdown file
*
* @public exported from `@promptbook/markdown-utils`
*/
export declare function addAutoGeneratedSection(content: string_markdown, options: {
readonly sectionName: string_name;
readonly sectionContent: string_markdown;
}): string_markdown;
/**
* TODO: [🏛] This can be part of markdown builder
*/