Skip to content

Commit 520b52f

Browse files
committed
fix test
1 parent 26231e9 commit 520b52f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/svelte2tsx/test/emitDts/samples/javascript-runes.v5/expected/TestRunes.svelte.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
declare const TestRunes: import("svelte").Component<{
1+
type $$ComponentProps = {
22
foo: string;
33
bar?: number;
4-
}, {
4+
};
5+
declare const TestRunes: import("svelte").Component<$$ComponentProps, {
56
baz: () => void;
67
}, "bar">;
78
type TestRunes = ReturnType<typeof TestRunes>;

0 commit comments

Comments
 (0)