UNPKG

ts-migrate-plugins

Version:

Set of codemods, which are doing transformation of js/jsx to ts/tsx

10 lines (9 loc) 304 B
import { Plugin } from 'ts-migrate-server'; import { AnyAliasOptions } from '../utils/validateOptions'; declare type Options = AnyAliasOptions; export interface LintConfig { useTabs: boolean; tabWidth: number; } declare const explicitAnyPlugin: Plugin<Options>; export default explicitAnyPlugin;