12345 |
- import * as YAML from "../yaml";
- 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 {};
|