index.d.cts 223 B

123456789
  1. import { Parser } from "acorn";
  2. interface Options {
  3. source?: boolean;
  4. defer?: boolean;
  5. }
  6. declare function acornImportPhases(options?: Options): (BaseParser: typeof Parser) => typeof Parser;
  7. export = acornImportPhases;