| 24 | changeDetection: ChangeDetectionStrategy.OnPush, |
| 25 | }) |
| 26 | export class App { |
| 27 | readonly plugins = signal<TanStackDevtoolsAngularPlugin[]>([ |
| 28 | { |
| 29 | name: 'Custom devtools', |
| 30 | render: () => import('./devtools/custom-devtools-panel'), |
| 31 | }, |
| 32 | ]) |
| 33 | |
| 34 | readonly counter = createCounter() |
| 35 | |
| 36 | readonly increment = () => this.counter.increment() |
| 37 | readonly decrement = () => this.counter.decrement() |
| 38 | } |
nothing calls this directly
no test coverage detected