UNPKG

rete-kit

Version:

Rete.js Kit ==== [![Made in Ukraine](https://img.shields.io/badge/made_in-ukraine-ffd700.svg?labelColor=0057b7)](https://stand-with-ukraine.pp.ua) [![Discord](https://img.shields.io/discord/1081223198055604244?color=%237289da&label=Discord)](https://disco

13 lines (12 loc) 466 B
import { F } from '../../types'; import { ContentTransformer } from '../types'; /** * Transformer that adds a first-level heading with optional prefix * Can be used for both single-file and multi-file strategies */ export declare class PrefixedHeadingTransformer implements ContentTransformer { private readonly instruction; private readonly prefix?; constructor(instruction: F, prefix?: string | undefined); transform(content: string): string; }