We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2b7bd1 commit 2b638a5Copy full SHA for 2b638a5
src/runtime/store/index.ts
@@ -13,7 +13,7 @@ export type Updater<T> = (value: T) => T;
13
type Invalidator<T> = (value?: T) => void;
14
15
/** Start and stop notification callbacks. */
16
-export type StartStopNotifier<T> = (set: Subscriber<T>, update?: (fn: Updater<T>) => void) => Unsubscriber | void;
+export type StartStopNotifier<T> = (set: Subscriber<T>, update: (fn: Updater<T>) => void) => Unsubscriber | void;
17
18
/** Readable interface for subscribing. */
19
export interface Readable<T> {
0 commit comments