UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

3 lines (2 loc) 273 B
import { BlockValue, Comment, Content, Position } from "../types.js"; export declare function createBlockValue(position: Position, content: Content, chomping: "clip" | "keep" | "strip", indent: null | number, value: string, indicatorComment: null | Comment): BlockValue;