There is a module that I have declared like so:
declare module conflicts {
export interface Item {}
export interface Item2 {}
export interface Item3 {}
}
I attempted to import this module in a component using the following code:
import * from '../../../_models/conflicts/conflicts';
After importing, I tried to use it like this:
let c = {} as conflicts.item3;
However, the code does not function as expected.