我有一个小问题,但沮丧很多。对于我的自定义模块,我需要传递一组组件。所以...为了保持良好的习惯,我想使用Typescript对其进行描述。看起来像这样:
export interface ModalModuleConfig {
title: string;
z-index: number;
entryComponents: Component[];
}
但是Component[]
是不合适的类型。仅适用于any[]
。但是我不想使用any[]
偷工减料。我更喜欢使用为角度组件创建的类型。像Component[]
,ComponentDecorator[]
或ComponentClass[]
之类的东西。但是它们都不起作用。有人可以帮我吗?