UNPKG

very-small-parser

Version:

A very small Markdown, HTML, and CSS parser.

4 lines (3 loc) 161 B
import type { IText, IElement } from '../types'; import type { JsonMlNode } from './types'; export declare const toHast: (node: JsonMlNode) => IText | IElement;