UNPKG

very-small-parser

Version:

A very small Markdown, HTML, and CSS parser.

4 lines (3 loc) 178 B
import type { IToken } from '../../types'; import type * as hast from '../../html/types'; export declare const toHast: (node: IToken) => hast.IElement | hast.IText | hast.IRoot;