UNPKG

bitran

Version:

📜 Highly customizable text processor and transpiler.

11 lines (10 loc) • 332 B
import { BitranCoreConfig } from '../core/index'; import { Node } from '../dom/node'; export interface StrOptions { step?: (node: Node, strNode: string) => void; } export declare class Stringifier { private factories; constructor(coreConfig: BitranCoreConfig); stringify(node: Node, options?: StrOptions): string; }