libs/ngx-pfe/pfe-actions/reload-page/reload-page-action.model.ts
No results matching.
Properties |
|
| type |
type:
|
Type : typeof ReloadPageActionType
|
|
Triggers a page reload through |
| break |
break:
|
Type : boolean
|
| Optional |
|
If break is "true" and the action was executed (that means, no conditions or conditions returns true) The flow will be stopped and the next actions will not be executed |
| conditions |
conditions:
|
Type : Conditions
|
| Optional |
|
A list of conditions under which the actions are executed |
| globalConfigId |
globalConfigId:
|
Type : string
|
| Optional |
|
Only valid on the navigation. Will spread the actions. |
import { PfeBaseActionConfig } from '../pfe-actions.model';
export const ReloadPageActionType = 'PFE_RELOAD_PAGE';
export interface PfeReloadPageActionConfig extends PfeBaseActionConfig {
/**
* Triggers a page reload through `window.location.reload();`
*/
type: typeof ReloadPageActionType;
}