Skip to content

Commit 54d2bd3

Browse files
committed
cleanup
1 parent d2d1b20 commit 54d2bd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/svelte/src/internal/client/reactivity/types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export interface Effect extends Reaction {
5252
/** The effect function */
5353
fn: null | (() => void | (() => void));
5454
/** The teardown function returned from the effect function */
55-
teardown: null | (() => void) | AbortController;
55+
teardown: null | (() => void);
5656
/** Transition managers created with `$.transition` */
5757
transitions: null | TransitionManager[];
5858
/** Next sibling child effect created inside the parent signal */

packages/svelte/src/internal/client/runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/** @import { ComponentContext, Derived, Effect, Reaction, Signal, Source, Value } from '#client' */
22
import { DEV } from 'esm-env';
3-
import { define_property, get_descriptors, get_prototype_of, run_all } from '../shared/utils.js';
3+
import { define_property, get_descriptors, get_prototype_of } from '../shared/utils.js';
44
import {
55
destroy_block_effect_children,
66
destroy_effect_children,

0 commit comments

Comments
 (0)