| 395 | @Input({isSignal: true} as Input) fooSignal = input<string | null>(null); |
| 396 | } |
| 397 | @NgModule({ |
| 398 | imports: [BrowserModule], |
| 399 | declarations: [TestComponent, TestSignalComponent], |
| 400 | }) |
| 401 | class TestModule implements DoBootstrap { |
| 402 | ngDoBootstrap() {} |
| 403 | } |
| 404 | |
| 405 | class TestStrategy implements NgElementStrategy { |
| 406 | connectedElement: HTMLElement | null = null; |
nothing calls this directly
no test coverage detected