Skip to content

Commit df1069a

Browse files
committed
lint
1 parent ad58874 commit df1069a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/svelte/src/compiler/types/index.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,13 @@ export interface Binding {
269269
* What the value was initialized with.
270270
* For destructured props such as `let { foo = 'bar' } = $props()` this is `'bar'` and not `$props()`
271271
*/
272-
initial: null | Expression | FunctionDeclaration | ClassDeclaration | ImportDeclaration | EachBlock;
272+
initial:
273+
| null
274+
| Expression
275+
| FunctionDeclaration
276+
| ClassDeclaration
277+
| ImportDeclaration
278+
| EachBlock;
273279
is_called: boolean;
274280
references: { node: Identifier; path: SvelteNode[] }[];
275281
mutated: boolean;

0 commit comments

Comments
 (0)