Skip to content

Commit d6b21f4

Browse files
committed
lint
1 parent b11367e commit d6b21f4

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

packages/svelte/src/index.d.ts

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -333,16 +333,18 @@ export type MountOptions<Props extends Record<string, any> = Record<string, any>
333333
* Used to control transition playback on initial render. The default value is `true` to run transitions.
334334
*/
335335
intro?: boolean;
336-
} & ({} extends Props ? {
337-
/**
338-
* Component properties.
339-
*/
340-
props?: Props;
341-
} : {
342-
/**
343-
* Component properties.
344-
*/
345-
props: Props;
346-
})
336+
} & ({} extends Props
337+
? {
338+
/**
339+
* Component properties.
340+
*/
341+
props?: Props;
342+
}
343+
: {
344+
/**
345+
* Component properties.
346+
*/
347+
props: Props;
348+
});
347349

348350
export * from './index-client.js';

0 commit comments

Comments
 (0)