From d2f71361e5b95dfb40747b1ce6dcbb2409ce57de Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Sat, 17 Aug 2024 14:32:19 +0100 Subject: [PATCH] revert --- packages/svelte/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/svelte/types/index.d.ts b/packages/svelte/types/index.d.ts index 43f5486781..b7412c46e5 100644 --- a/packages/svelte/types/index.d.ts +++ b/packages/svelte/types/index.d.ts @@ -949,6 +949,8 @@ declare module 'svelte/compiler' { references: { node: Identifier; path: SvelteNode[] }[]; mutated: boolean; reassigned: boolean; + /** `true` if mutated _or_ reassigned */ + updated: boolean; scope: Scope; /** For `legacy_reactive`: its reactive dependencies */ legacy_dependencies: Binding[]; @@ -1862,8 +1864,6 @@ declare module 'svelte/compiler' { index: Identifier; item: Identifier; declarations: Map; - /** List of bindings that are referenced within the expression */ - references: Binding[]; /** * Optimization path for each blocks: If the parent isn't a fragment and * it only has a single child, then we can classify the block as being "controlled".