Skip to content

Commit 805d4e5

Browse files
committed
WIP
1 parent 0045414 commit 805d4e5

File tree

1 file changed

+3
-0
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+3
-0
lines changed

packages/svelte/src/internal/client/reactivity/types.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import type {
55
TemplateNode,
66
TransitionManager
77
} from '#client';
8+
import type { Boundary } from '../dom/blocks/boundary';
89

910
export interface Signal {
1011
/** Flags bitmask */
@@ -84,6 +85,8 @@ export interface Effect extends Reaction {
8485
last: null | Effect;
8586
/** Parent effect */
8687
parent: Effect | null;
88+
/** The boundary this effect belongs to */
89+
b: Boundary | null;
8790
/** Dev only */
8891
component_function?: any;
8992
/** Dev only. Only set for certain block effects. Contains a reference to the stack that represents the render tree */

0 commit comments

Comments
 (0)