UNPKG

452 BTypeScriptView Raw
1import { DiagramDb } from './types.js';
2export declare const frontMatterRegex: RegExp;
3/**
4 * Extract and parse frontmatter from text, if present, and sets appropriate
5 * properties in the provided db.
6 * @param text - The text that may have a YAML frontmatter.
7 * @param db - Diagram database, could be of any diagram.
8 * @returns text with frontmatter stripped out
9 */
10export declare function extractFrontMatter(text: string, db: DiagramDb): string;