We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 643fe6c commit 2022172Copy full SHA for 2022172
packages/svelte/src/internal/client/types.d.ts
@@ -64,8 +64,11 @@ export type TemplateNode = Text | Element | Comment;
64
export type Dom = TemplateNode | TemplateNode[];
65
66
export type EachState = {
67
+ /** flags */
68
flags: number;
69
+ /** a key -> item lookup */
70
items: Map<any, EachItem>;
71
+ /** head of the linked list of items */
72
first: EachItem | null;
73
};
74
0 commit comments