Function subscribeIgnoreFirst
-
subscribeIgnoreFirst<T>(
store: Readable<T> | MinimalWritable<T>,
subscriber: Subscriber<T>,
): UnsubscriberType Parameters
- T
type of data.
Parameters
- store: Readable<T> | MinimalWritable<T>
Store to subscribe to...
- subscriber: Subscriber<T>
Function to receive future updates.
Returns Unsubscriber
Store unsubscribe function.
- T
Subscribes to the given store with the subscriber function provided and ignores the first automatic update. All future updates are dispatched to the subscriber function.