UNPKG

astx

Version:

super powerful structural search and replace for JavaScript and TypeScript to automate your refactoring

10 lines (9 loc) 357 B
import { Backend } from './backend/Backend'; import * as t from 'typed-validators'; export declare type AstxConfig = { parser?: 'babel' | 'babel/auto' | 'recast/babel' | 'recast/babel/auto' | Backend; parserOptions?: Record<string, any>; workers?: number; prettier?: boolean; }; export declare const AstxConfigType: t.TypeAlias<AstxConfig>;