File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/svelte/src/runtime/store Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const subscriber_queue = [];
12
12
/**
13
13
* Creates a `Readable` store that allows reading by subscription.
14
14
* @template T
15
- * @param {T } value initial value
15
+ * @param {T } [ value] initial value
16
16
* @param {import('./public.js').StartStopNotifier<T> } [start]
17
17
* @returns {import('./public.js').Readable<T> }
18
18
*/
@@ -25,7 +25,7 @@ export function readable(value, start) {
25
25
/**
26
26
* Create a `Writable` store that allows both updating and reading by subscription.
27
27
* @template T
28
- * @param {T } value initial value
28
+ * @param {T } [ value] initial value
29
29
* @param {import('./public.js').StartStopNotifier<T> } [start]
30
30
* @returns {import('./public.js').Writable<T> }
31
31
*/
You can’t perform that action at this time.
0 commit comments