UNPKG

ts-migrate

Version:

A tool for migrating frontend application from JavaScript to TypeScript

10 lines (9 loc) 222 B
interface RenameParams { rootDir: string; sources?: string | string[]; } export default function rename({ rootDir, sources, }: RenameParams): Array<{ oldFile: string; newFile: string; }> | null; export {};