astx
Version:
super powerful structural search and replace for JavaScript and TypeScript to automate your refactoring
4 lines (3 loc) • 310 B
TypeScript
import { ImportDeclaration, NodePath } from '../types';
import { CompiledReplacement, CompileReplacementOptions } from '.';
export default function compileImportDeclarationReplacement(path: NodePath<ImportDeclaration, ImportDeclaration>, compileOptions: CompileReplacementOptions): CompiledReplacement | void;