ReduxDevTools
- Package
 - purescript-redux-devtools
 - Repository
 - justinwoo/purescript-redux-devtools
 
#getExtension Source
getExtension :: Effect (Maybe Extension)Get the Redux DevTools Extension object, Maybe for the value being missing
#connect Source
connect :: Extension -> ConnectOptions -> Effect InstanceGet an instance that attaches to Redux DevTools
#InstanceId Source
type InstanceId = StringInstance Id used by Redux DevTools
#ConnectOptions Source
data ConnectOptions :: TypeRedux DevTools connect options
#mkConnectOptions Source
mkConnectOptions :: forall r' r. Union r r' AllConnectOptions => Record r -> ConnectOptionsmake Redux DevTools Connect Options by specifying any subset of options
#AllConnectOptions Source
type AllConnectOptions = (actionCreators :: Foreign, actionSanitizer :: Action -> Foreign, actionsBlacklist :: Array String, actionsWhitelist :: Array String, features :: FeaturesOptions, latency :: Milliseconds, maxAge :: IntGreaterThanOne, name :: String, predicate :: EffectFn2 State Action Boolean, shouldRecordChanges :: Boolean, stateSanitizer :: State -> Foreign)Options that may be passed to Redux DevTools connect
See https://github.com/zalmoxisus/redux-devtools-extension/blob/master/docs/API/Arguments.md
Not all options will be completely typed unless contributed. Submit an issue or PR for more.
#FeaturesOptions Source
data FeaturesOptions :: TypeA set of feature flags for Redux DevTools connect options
#mkFeaturesOptions Source
mkFeaturesOptions :: forall r' r. Union r r' AllFeaturesOptions => Record r -> FeaturesOptionsmake Redux DevTools Features Options by specifying any subset of options
#AllFeaturesOptions Source
type AllFeaturesOptions = (dispatch :: Boolean, export :: Boolean, import :: String, jump :: Boolean, lock :: Boolean, pause :: Boolean, persist :: Boolean, reorder :: Boolean, skip :: Boolean, test :: Boolean)Options that may be passed to features for Redux DevTools connect options
See https://github.com/zalmoxisus/redux-devtools-extension/blob/master/docs/API/Arguments.md#features
Not all options will be completely typed unless contributed. Submit an issue or PR for more.
#Milliseconds Source
type Milliseconds = NumberType alias for Number that is a Millisecond quantity
#IntGreaterThanOne Source
type IntGreaterThanOne = IntType alias for Int that is greater than 1
- Modules
 - ReduxDevTools