Skip to content

Commit ed5a489

Browse files
committed
regenerate types
1 parent cefff62 commit ed5a489

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/svelte/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,15 +373,15 @@ declare module 'svelte' {
373373
* Synchronously flushes any pending state changes and those that result from it.
374374
* */
375375
export function flushSync(fn?: (() => void) | undefined): void;
376-
/** Anything except a function */
377-
type NotFunction<T> = T extends Function ? never : T;
378376
/**
379377
* Create a snippet programmatically
380378
* */
381379
export function createRawSnippet<Params extends unknown[]>(fn: (...params: Getters<Params>) => {
382380
render: () => string;
383381
setup?: (element: Element) => void;
384382
}): Snippet<Params>;
383+
/** Anything except a function */
384+
type NotFunction<T> = T extends Function ? never : T;
385385
/**
386386
* Mounts a component to the given target and returns the exports and potentially the props (if compiled with `accessors: true`) of the component.
387387
* Transitions will play during the initial render unless the `intro` option is set to `false`.

0 commit comments

Comments
 (0)