rete-kit
Version:
Rete.js Kit ==== [](https://stand-with-ukraine.pp.ua) [](https://disco
10 lines (9 loc) • 332 B
TypeScript
import { ContentTransformer } from '../types';
/**
* Adds YAML frontmatter metadata block to content
*/
export declare class AddYamlFrontmatterTransformer implements ContentTransformer {
private readonly metadata;
constructor(metadata: Record<string, string | boolean | number>);
transform(content: string): string;
}