pull/16284/head
Rich Harris 3 months ago
parent 0045414425
commit 805d4e519a

@ -5,6 +5,7 @@ import type {
TemplateNode, TemplateNode,
TransitionManager TransitionManager
} from '#client'; } from '#client';
import type { Boundary } from '../dom/blocks/boundary';
export interface Signal { export interface Signal {
/** Flags bitmask */ /** Flags bitmask */
@ -84,6 +85,8 @@ export interface Effect extends Reaction {
last: null | Effect; last: null | Effect;
/** Parent effect */ /** Parent effect */
parent: Effect | null; parent: Effect | null;
/** The boundary this effect belongs to */
b: Boundary | null;
/** Dev only */ /** Dev only */
component_function?: any; component_function?: any;
/** Dev only. Only set for certain block effects. Contains a reference to the stack that represents the render tree */ /** Dev only. Only set for certain block effects. Contains a reference to the stack that represents the render tree */

Loading…
Cancel
Save