astx
Version:
super powerful structural search and replace for JavaScript and TypeScript to automate your refactoring
17 lines (16 loc) • 418 B
TypeScript
import { CommandModule } from 'yargs';
import '../node/registerTsNode';
declare type Options = {
transform?: string;
parser?: string;
parserOptions?: string;
find?: string;
replace?: string;
filesAndDirectories?: string[];
yes?: boolean;
gitignore?: boolean;
threads?: number;
debugConfig?: boolean;
};
declare const transform: CommandModule<Options>;
export default transform;