stringham / move-ts

A Visual Studio Code plugin for updating relative imports when moving typescript files and folders in your workspace.
MIT License
52 stars 15 forks source link

does not refactor *.d.ts files after moving #32

Open amirhossein1414 opened 4 years ago

amirhossein1414 commented 4 years ago

After moving type.d.ts files inline imports wasn't refactored. This is my class that was untouched after moving.

declare class MapboxDraw {
    onAdd(map: import('../../../../node_modules/mapbox-gl').Map): HTMLElement;
    onRemove(map: import('../../../../node_modules/mapbox-gl').Map): any;
    changeMode(mode: import('./mapbox-drawer.model').MapBoxDrawModes, options?: Object);
}