diff --git a/packages/package/test/fixtures/resolve-alias/expected/Test.svelte.d.ts b/packages/package/test/fixtures/resolve-alias/expected/Test.svelte.d.ts index 613984c1649b..36d723f90b20 100644 --- a/packages/package/test/fixtures/resolve-alias/expected/Test.svelte.d.ts +++ b/packages/package/test/fixtures/resolve-alias/expected/Test.svelte.d.ts @@ -8,8 +8,8 @@ declare const __propDef: { }; slots: {}; }; -export declare type TestProps = typeof __propDef.props; -export declare type TestEvents = typeof __propDef.events; -export declare type TestSlots = typeof __propDef.slots; +export type TestProps = typeof __propDef.props; +export type TestEvents = typeof __propDef.events; +export type TestSlots = typeof __propDef.slots; export default class Test extends SvelteComponentTyped {} export {}; diff --git a/packages/package/test/fixtures/typescript/expected/Test.svelte.d.ts b/packages/package/test/fixtures/typescript/expected/Test.svelte.d.ts index 634969ee93a6..1d2d93df5582 100644 --- a/packages/package/test/fixtures/typescript/expected/Test.svelte.d.ts +++ b/packages/package/test/fixtures/typescript/expected/Test.svelte.d.ts @@ -14,9 +14,9 @@ declare const __propDef: { }; }; }; -export declare type TestProps = typeof __propDef.props; -export declare type TestEvents = typeof __propDef.events; -export declare type TestSlots = typeof __propDef.slots; +export type TestProps = typeof __propDef.props; +export type TestEvents = typeof __propDef.events; +export type TestSlots = typeof __propDef.slots; export default class Test extends SvelteComponentTyped { get astring(): string; } diff --git a/packages/package/test/fixtures/typescript/expected/Test2.svelte.d.ts b/packages/package/test/fixtures/typescript/expected/Test2.svelte.d.ts index c5b3cb1befca..649f2d35d086 100644 --- a/packages/package/test/fixtures/typescript/expected/Test2.svelte.d.ts +++ b/packages/package/test/fixtures/typescript/expected/Test2.svelte.d.ts @@ -9,8 +9,8 @@ declare const __propDef: { }; slots: {}; }; -export declare type Test2Props = typeof __propDef.props; -export declare type Test2Events = typeof __propDef.events; -export declare type Test2Slots = typeof __propDef.slots; +export type Test2Props = typeof __propDef.props; +export type Test2Events = typeof __propDef.events; +export type Test2Slots = typeof __propDef.slots; export default class Test2 extends SvelteComponentTyped {} export {}; diff --git a/packages/package/test/watch/expected/Test.svelte.d.ts b/packages/package/test/watch/expected/Test.svelte.d.ts index b30432f26f44..267596349ae9 100644 --- a/packages/package/test/watch/expected/Test.svelte.d.ts +++ b/packages/package/test/watch/expected/Test.svelte.d.ts @@ -8,9 +8,9 @@ declare const __propDef: { }; slots: {}; }; -export declare type TestProps = typeof __propDef.props; -export declare type TestEvents = typeof __propDef.events; -export declare type TestSlots = typeof __propDef.slots; +export type TestProps = typeof __propDef.props; +export type TestEvents = typeof __propDef.events; +export type TestSlots = typeof __propDef.slots; export default class Test extends SvelteComponentTyped { } export {};