group-cst-flow-collection-items.d.ts 402 B

12345
  1. import * as YAML from "../yaml";
  2. declare type CstFlowMapItemWithoutComment = Exclude<YAML.cst.FlowMap["items"][number], YAML.cst.Comment>;
  3. declare type CstFlowSeqItemWithoutComment = Exclude<YAML.cst.FlowSeq["items"][number], YAML.cst.Comment>;
  4. export declare function groupCstFlowCollectionItems<T extends CstFlowMapItemWithoutComment[] | CstFlowSeqItemWithoutComment[]>(cstItems: T): T[];
  5. export {};