MCPcopy Create free account
hub / github.com/TanStack/devtools / App

Class App

examples/angular/basic/src/app/app.ts:26–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24 changeDetection: ChangeDetectionStrategy.OnPush,
25})
26export 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}

Callers

nothing calls this directly

Calls 1

createCounterFunction · 0.90

Tested by

no test coverage detected