TanStack

SubscribeSource

Type Alias: SubscribeSource<TValue>

ts
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.

Type Parameters

TValue

TValue