I'm working in refactor an Angular code and I need to have the same filenames meanwhile finish the refactor.
My solution was to rename my imports, it is a great way to use a different name or alias for my classes and modules.
For example, you can import a single class using the as keyword
import {Player as NbaPlayer} from './nba'
Or import the full module using *
import * as NbaLeage from './nba'
Then you can use your aliases in your application without problem.
Example:
import { Player, Team } from './nba';
import { Player as NbaPlayer} from './nba';
import * as NbaLeage from './nba';
let lebron = new Player('Lebron', 'SF');
let carmelo = new NbaLeage.Player('Carmelo', 'SF');
let curry = new NbaPlayer('curry', 'PG');
let players : Array<NbaPlayer> = [ carmelo, curry, lebron];
players.forEach(player => console.log(player.name));
Have nice day!
Top comments (0)