File tree Expand file tree Collapse file tree
devtools/projects/protocol/src/lib
goldens/public-api/core/primitives/signals
packages/core/primitives/signals/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,18 +17,11 @@ import {
1717 Injector ,
1818 Type ,
1919} from '@angular/core' ;
20+ import { ReactiveNodeKind } from '@angular/core/primitives/signals' ;
2021
2122export interface DebugSignalGraphNode {
2223 id : string ;
23- kind :
24- | 'signal'
25- | 'computed'
26- | 'effect'
27- | 'template'
28- | 'linkedSignal'
29- | 'afterRenderEffectPhase'
30- | 'childSignalProp' // Represents a signal passed as a prop to a child component in a CoW app
31- | 'unknown' ;
24+ kind : ReactiveNodeKind ;
3225 epoch : number ;
3326 label ?: string ;
3427 preview : Descriptor ;
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ export interface ReactiveNode {
159159}
160160
161161// @public (undocumented)
162- export type ReactiveNodeKind = ' signal' | ' computed' | ' effect' | ' template' | ' linkedSignal' | ' afterRenderEffectPhase' | ' unknown' ;
162+ export type ReactiveNodeKind = ' signal' | ' computed' | ' effect' | ' template' | ' linkedSignal' | ' afterRenderEffectPhase' | ' childSignalProp ' | ' unknown' ;
163163
164164// @public
165165export function resetConsumerBeforeComputation(node : ReactiveNode ): void ;
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ export type ReactiveNodeKind =
9595 | 'template'
9696 | 'linkedSignal'
9797 | 'afterRenderEffectPhase'
98+ | 'childSignalProp' // Represents a signal passed as a prop to a child component in a CoW app
9899 | 'unknown' ;
99100
100101/**
You can’t perform that action at this time.
0 commit comments