我可以将特定类型导入为
import { Type1, Type2 } from '../../my-file';
我可以从别名为的文件中导入所有类型
import * as fromApp from '../../../store/app.reducers';
如何导入带有别名的特定类型,例如
import { Type1, Type2 } as MyTypes from '../../my-file'; // of-course, this does not work
答案 0 :(得分:0)
您可以做的最接近的事情:
import {Type1, Type2} from '../../my-file';
const MyTypes = {Type1, Type2};