preprocess.d.ts 565 B

1234
  1. import * as YAML from "./yaml";
  2. declare type YamlCstNode = YAML.cst.Alias | YAML.cst.BlankLine | YAML.cst.BlockFolded | YAML.cst.BlockLiteral | YAML.cst.BlockValue | YAML.cst.Comment | YAML.cst.Directive | YAML.cst.Document | YAML.cst.FlowCollection | YAML.cst.FlowMap | YAML.cst.FlowSeq | YAML.cst.Map | YAML.cst.MapItem | YAML.cst.MapKey | YAML.cst.MapValue | YAML.cst.PlainValue | YAML.cst.QuoteDouble | YAML.cst.QuoteSingle | YAML.cst.QuoteValue | YAML.cst.Seq | YAML.cst.SeqItem;
  3. export declare function removeCstBlankLine(node: YamlCstNode): void;
  4. export {};