'NgElementConstructor <unknown>' türünün bağımsız değişkeni, 'CustomElementConstructor' türü parametresine atanamaz


10

Açısal Öğeler oluştururken Angular9 ile VSCode (1.44.0-insider) garip bir uyarı alıyorum:

export class AppModule { 
  constructor(private injector: Injector) {
    const helloElement = createCustomElement(HelloComponent, {injector});
    customElements.define('my-hello', helloElement);
  }
  ngDoBootstrap() {}
}

türü, helloElementtypcript'ten bir hata mesajı ile kabul edilmez:

'NgElementConstructor' türünün bağımsız değişkeni, 'CustomElementConstructor' türünün parametresine atanamaz

Yanıtlar:


Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.