extract-comments.d.ts 198 B

123
  1. import { Context } from "../transform";
  2. import * as YAML from "../yaml";
  3. export declare function extractComments<T extends null | object>(nodes: Array<T | YAML.cst.Comment>, context: Context): T[];