diff --git a/src/core/features/compile/components/compile-html/compile-html.ts b/src/core/features/compile/components/compile-html/compile-html.ts index 97edd3397..1a6fad10b 100644 --- a/src/core/features/compile/components/compile-html/compile-html.ts +++ b/src/core/features/compile/components/compile-html/compile-html.ts @@ -92,7 +92,7 @@ export class CoreCompileHtmlComponent implements OnChanges, OnDestroy, DoCheck { } /** - * Detect and act upon changes that Angular can’t or won’t detect on its own (objects and arrays). + * @inheritdoc */ ngDoCheck(): void { if (!this.componentInstance || this.creatingComponent) { @@ -111,7 +111,7 @@ export class CoreCompileHtmlComponent implements OnChanges, OnDestroy, DoCheck { } /** - * Detect changes on input properties. + * @inheritdoc */ async ngOnChanges(changes: Record): Promise { // Only compile if text/javascript has changed or the forceCompile flag has been set to true. @@ -148,7 +148,7 @@ export class CoreCompileHtmlComponent implements OnChanges, OnDestroy, DoCheck { } /** - * Component destroyed. + * @inheritdoc */ ngOnDestroy(): void { this.componentRef?.destroy(); diff --git a/src/core/utils/async-instance.ts b/src/core/utils/async-instance.ts index 187f64c19..088ff66b0 100644 --- a/src/core/utils/async-instance.ts +++ b/src/core/utils/async-instance.ts @@ -117,7 +117,6 @@ export interface AsyncInstanceWrapper< resetInstance(): void; } -// eslint-disable-next-line @typescript-eslint/ban-types export type AsyncObject = object; /**