UNPKG

@syntest/analysis-javascript

Version:

SynTest CFG JavaScript is a library for generating control flow graphs for the JavaScript language

18 lines 497 B
import * as t from "@babel/types"; import { Factory } from "../../Factory"; import { Export } from "./Export"; /** * ExportFactory for Javascript. * * @author Dimitri Stallenberg */ export declare class ExportFactory extends Factory { /** * Generate exports for specified target. * * @param filePath The filePath of the target * @param AST The AST of the target */ extract(filePath: string, AST: t.Node): Export[]; } //# sourceMappingURL=ExportFactory.d.ts.map