Skip to content

Commit 95a348c

Browse files
committed
tidy up
1 parent e6c2691 commit 95a348c

File tree

1 file changed

+1
-5
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+1
-5
lines changed

packages/svelte/src/internal/client/reactivity/sources.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,12 @@ import { CLEAN, DERIVED, DIRTY, MANAGED, SOURCE } from '../constants.js';
2828
*/
2929
/*#__NO_SIDE_EFFECTS__*/
3030
export function source(initial_value) {
31+
/** @type {import('#client').Source<V>} */
3132
const signal = {
32-
// consumers
3333
c: null,
34-
// equals
3534
e: default_equals,
36-
// flags
3735
f: SOURCE | CLEAN,
38-
// value
3936
v: initial_value,
40-
// write version
4137
w: 0
4238
};
4339

0 commit comments

Comments
 (0)