2017-10-20 101 views
0

試圖避免對陣列多次打出來:正確類型進口零部件不共享接口實現

import { ComponentA } from './components/A.component'; 
import { ComponentB } from './components/B.component'; 

const COMPONENTS: any[] = [ 
    ComponentA, 
    ComponentB 
]; 

@NgModule({ 
    declarations: COMPONENTS, 
    exports: COMPONENTS 
}) 
export class ExampleModule { 
} 

什麼是合適的類型const COMPONENTS: any[]any[]的作品,但我們試圖避免使用anyobject[]似乎工作,但它感覺應該有更具體的東西,我的搜索技能是讓我失望。

+0

順便說一句,我寧願不使用標記如果可能的話。 – lukiffer

回答