File tree Expand file tree Collapse file tree 1 file changed +13
-11
lines changed
Expand file tree Collapse file tree 1 file changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -330,17 +330,19 @@ declare module 'svelte' {
330330 * Used to control transition playback on initial render. The default value is `true` to run transitions.
331331 */
332332 intro ?: boolean ;
333- } & ( { } extends Props ? {
334- /**
335- * Component properties.
336- */
337- props ?: Props ;
338- } : {
339- /**
340- * Component properties.
341- */
342- props : Props ;
343- } )
333+ } & ( { } extends Props
334+ ? {
335+ /**
336+ * Component properties.
337+ */
338+ props ?: Props ;
339+ }
340+ : {
341+ /**
342+ * Component properties.
343+ */
344+ props : Props ;
345+ } ) ;
344346 /**
345347 * The `onMount` function schedules a callback to run as soon as the component has been mounted to the DOM.
346348 * It must be called during the component's initialisation (but doesn't need to live *inside* the component;
You can’t perform that action at this time.
0 commit comments