type SubscribeSource<TValue> = | Atom<TValue> | ReadonlyAtom<TValue> | Store<TValue> | ReadonlyStore<TValue>;
Defined in: types.ts:92
Any atom or store that Subscribe can read and subscribe to.
TValue