Skip to content

Commit d7c8a6f

Browse files
committed
fix tests
1 parent 553cc0c commit d7c8a6f

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

packages/package/test/fixtures/resolve-alias/expected/Test.svelte.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ declare const __propDef: {
88
};
99
slots: {};
1010
};
11-
export declare type TestProps = typeof __propDef.props;
12-
export declare type TestEvents = typeof __propDef.events;
13-
export declare type TestSlots = typeof __propDef.slots;
11+
export type TestProps = typeof __propDef.props;
12+
export type TestEvents = typeof __propDef.events;
13+
export type TestSlots = typeof __propDef.slots;
1414
export default class Test extends SvelteComponentTyped<TestProps, TestEvents, TestSlots> {}
1515
export {};

packages/package/test/fixtures/typescript/expected/Test.svelte.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ declare const __propDef: {
1414
};
1515
};
1616
};
17-
export declare type TestProps = typeof __propDef.props;
18-
export declare type TestEvents = typeof __propDef.events;
19-
export declare type TestSlots = typeof __propDef.slots;
17+
export type TestProps = typeof __propDef.props;
18+
export type TestEvents = typeof __propDef.events;
19+
export type TestSlots = typeof __propDef.slots;
2020
export default class Test extends SvelteComponentTyped<TestProps, TestEvents, TestSlots> {
2121
get astring(): string;
2222
}

packages/package/test/fixtures/typescript/expected/Test2.svelte.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ declare const __propDef: {
99
};
1010
slots: {};
1111
};
12-
export declare type Test2Props = typeof __propDef.props;
13-
export declare type Test2Events = typeof __propDef.events;
14-
export declare type Test2Slots = typeof __propDef.slots;
12+
export type Test2Props = typeof __propDef.props;
13+
export type Test2Events = typeof __propDef.events;
14+
export type Test2Slots = typeof __propDef.slots;
1515
export default class Test2 extends SvelteComponentTyped<Test2Props, Test2Events, Test2Slots> {}
1616
export {};

packages/package/test/watch/expected/Test.svelte.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ declare const __propDef: {
88
};
99
slots: {};
1010
};
11-
export declare type TestProps = typeof __propDef.props;
12-
export declare type TestEvents = typeof __propDef.events;
13-
export declare type TestSlots = typeof __propDef.slots;
11+
export type TestProps = typeof __propDef.props;
12+
export type TestEvents = typeof __propDef.events;
13+
export type TestSlots = typeof __propDef.slots;
1414
export default class Test extends SvelteComponentTyped<TestProps, TestEvents, TestSlots> {
1515
}
1616
export {};

0 commit comments

Comments
 (0)