File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -373,15 +373,15 @@ declare module 'svelte' {
373
373
* Synchronously flushes any pending state changes and those that result from it.
374
374
* */
375
375
export function flushSync ( fn ?: ( ( ) => void ) | undefined ) : void ;
376
- /** Anything except a function */
377
- type NotFunction < T > = T extends Function ? never : T ;
378
376
/**
379
377
* Create a snippet programmatically
380
378
* */
381
379
export function createRawSnippet < Params extends unknown [ ] > ( fn : ( ...params : Getters < Params > ) => {
382
380
render : ( ) => string ;
383
381
setup ?: ( element : Element ) => void ;
384
382
} ) : Snippet < Params > ;
383
+ /** Anything except a function */
384
+ type NotFunction < T > = T extends Function ? never : T ;
385
385
/**
386
386
* Mounts a component to the given target and returns the exports and potentially the props (if compiled with `accessors: true`) of the component.
387
387
* Transitions will play during the initial render unless the `intro` option is set to `false`.
You can’t perform that action at this time.
0 commit comments