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[]
は動作しますが、私たちはany
の使用を避けようとしており、object[]
が動作するようですが、より具体的なものがあり、検索スキルが失敗しているように感じます。
を持つのと宣言し、輸出を定義して見ることができます可能であればインタフェース。 – lukiffer