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