You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* `onMount`, like [`$effect`](https://svelte.dev/docs/svelte/$effect), schedules a function to run as soon as the component has been mounted to the DOM.
49
57
* Unlike `$effect`, the provided function only runs once.
Copy file name to clipboardExpand all lines: packages/svelte/types/index.d.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -348,6 +348,7 @@ declare module 'svelte' {
348
348
*/
349
349
props: Props;
350
350
});
351
+
exportfunctiongetAbortSignal(): AbortSignal;
351
352
/**
352
353
* `onMount`, like [`$effect`](https://svelte.dev/docs/svelte/$effect), schedules a function to run as soon as the component has been mounted to the DOM.
353
354
* Unlike `$effect`, the provided function only runs once.
0 commit comments