diff --git a/packages/abc/cell/cell-host.directive.ts b/packages/abc/cell/cell-host.directive.ts
index 66dfeb707..1b2069cc2 100644
--- a/packages/abc/cell/cell-host.directive.ts
+++ b/packages/abc/cell/cell-host.directive.ts
@@ -28,7 +28,6 @@ export class CellHostDirective implements OnInit {
this.viewContainerRef.clear();
const componentRef = this.viewContainerRef.createComponent(componentType);
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- (componentRef.instance as any).data = this.data;
+ (componentRef.instance as { data: CellWidgetData }).data = this.data;
}
}
diff --git a/packages/abc/cell/cell.component.ts b/packages/abc/cell/cell.component.ts
index dcc3b0fb9..e76596565 100644
--- a/packages/abc/cell/cell.component.ts
+++ b/packages/abc/cell/cell.component.ts
@@ -63,7 +63,7 @@ import type { CellDefaultText, CellOptions, CellTextResult, CellValue, CellWidge