Skip to content

Commit cdfa314

Browse files
committed
lint
1 parent d6b21f4 commit cdfa314

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

packages/svelte/types/index.d.ts

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)