Das Argument vom Typ 'NgElementConstructor <unbekannt>' kann nicht dem Parameter vom Typ 'CustomElementConstructor' zugewiesen werden.

Ich erhalte eine seltsame Warnung in VSCode (1.44.0-Insider) mit Angular9 beim Erstellen von Angular Elements: export class AppModule { constructor(private injector: Injector) { const helloElement = createCustomElement(HelloComponent, {injector}); customElements.define('my-hello', helloElement); }...