From e54e5a356d23247ee9202311b50214cf11a95f35 Mon Sep 17 00:00:00 2001 From: hantatsang Date: Sat, 23 Jan 2021 09:43:22 +1100 Subject: [PATCH] store: export StartStopNotifier public type --- src/runtime/store/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/store/index.ts b/src/runtime/store/index.ts index bf2c166e13..92083b07db 100644 --- a/src/runtime/store/index.ts +++ b/src/runtime/store/index.ts @@ -13,7 +13,7 @@ export type Updater = (value: T) => T; type Invalidator = (value?: T) => void; /** Start and stop notification callbacks. */ -type StartStopNotifier = (set: Subscriber) => Unsubscriber | void; +export type StartStopNotifier = (set: Subscriber) => Unsubscriber | void; /** Readable interface for subscribing. */ export interface Readable {