pull/17150/head
Rich Harris 5 days ago
parent 643fe6cc06
commit 202217297e

@ -64,8 +64,11 @@ export type TemplateNode = Text | Element | Comment;
export type Dom = TemplateNode | TemplateNode[];
export type EachState = {
/** flags */
flags: number;
/** a key -> item lookup */
items: Map<any, EachItem>;
/** head of the linked list of items */
first: EachItem | null;
};

Loading…
Cancel
Save