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 ad58874 commit df1069aCopy full SHA for df1069a
packages/svelte/src/compiler/types/index.d.ts
@@ -269,7 +269,13 @@ export interface Binding {
269
* What the value was initialized with.
270
* For destructured props such as `let { foo = 'bar' } = $props()` this is `'bar'` and not `$props()`
271
*/
272
- initial: null | Expression | FunctionDeclaration | ClassDeclaration | ImportDeclaration | EachBlock;
+ initial:
273
+ | null
274
+ | Expression
275
+ | FunctionDeclaration
276
+ | ClassDeclaration
277
+ | ImportDeclaration
278
+ | EachBlock;
279
is_called: boolean;
280
references: { node: Identifier; path: SvelteNode[] }[];
281
mutated: boolean;
0 commit comments