Gets the current active value from the active Map.
active
This is used for the scenario where we are managing a single active instance. For example when selecting a book from a collection of books.
The selected Book instance becomes the active value.
Book
const book:Book = getActiveValue(bookStore.active); Copy
const book:Book = getActiveValue(bookStore.active);
Generated using TypeDoc
Gets the current active value from the
active
Map.This is used for the scenario where we are managing a single active instance. For example when selecting a book from a collection of books.
The selected
Book
instance becomes the active value.