I'm trying to breakdown the coding in a widget.tsx file so I can customize to meet my own needs. In the sample "control-the-widget-state" the first line in the widget.tsx file is this:
import { React, type AllWidgetProps, getAppStore, appActions, ReactRedux, type WidgetProps, WidgetManager, type IMState, WidgetState } from 'jimu-core'
I understand what this line is doing but I can't find any documentation for some of these references. Take "appActions" for example. If I go to the jimu-core reference page here, there is no reference to a method, class, enumeration, or function called "appActions." I also looked in the React API library but found nothing.
Where is the API documentation for some of this stuff? It goes a long way in helping modify examples to meet my own needs.