getObjectiveStoreFromSagaContext
function getObjectiveStoreFromSagaContext(): Generator<any, ObjectiveStore, ObjectiveStore>
Gets the ObjectiveStore instance from the saga's context.
Returns
Examples
function* () {
const objectiveStore = yield getObjectiveStoreFromSagaContext();
}