An object with effects properties.

interface IWithEffectsProps {
    hasLocalEffects: Nilable<boolean>;
    hasRemoteEffects: Nilable<boolean>;
}

Properties

hasLocalEffects: Nilable<boolean>

If there is an action on app's side, it will have effects in this application in general.

Default

false

hasRemoteEffects: Nilable<boolean>

If there is an action in this application, it will have effects on app's side in general.

Default

true

Generated using TypeDoc