UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

6 lines (5 loc) 410 B
import * as YAML from "../yaml.js"; declare type CstFlowMapItemWithoutComment = Exclude<YAML.cst.FlowMap["items"][number], YAML.cst.Comment>; declare type CstFlowSeqItemWithoutComment = Exclude<YAML.cst.FlowSeq["items"][number], YAML.cst.Comment>; export declare function groupCstFlowCollectionItems<T extends CstFlowMapItemWithoutComment[] | CstFlowSeqItemWithoutComment[]>(cstItems: T): T[]; export {};