From cbfba3afdaaee16d314bc97ba00de6f5aec09e8a Mon Sep 17 00:00:00 2001 From: hantatsang Date: Thu, 21 Jan 2021 21:25:15 +1100 Subject: [PATCH] store: avoid some internal type exports --- src/runtime/store/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/store/index.ts b/src/runtime/store/index.ts index 49f4b5d8be..bf2c166e13 100644 --- a/src/runtime/store/index.ts +++ b/src/runtime/store/index.ts @@ -10,10 +10,10 @@ export type Unsubscriber = () => void; export type Updater = (value: T) => T; /** Cleanup logic callback. */ -export type Invalidator = (value?: T) => void; +type Invalidator = (value?: T) => void; /** Start and stop notification callbacks. */ -export type StartStopNotifier = (set: Subscriber) => Unsubscriber | void; +type StartStopNotifier = (set: Subscriber) => Unsubscriber | void; /** Readable interface for subscribing. */ export interface Readable {