libs/ngx-pfe/pfe-actions/reload-page/reload-page-action.model.ts
Properties |
type |
type:
|
Triggers a page reload through |
import { PfeBaseActionConfig } from '../pfe-actions.model';
// eslint-disable-next-line @typescript-eslint/naming-convention
export const ReloadPageActionType = 'PFE_RELOAD_PAGE';
export interface PfeReloadPageActionConfig extends PfeBaseActionConfig {
/**
* Triggers a page reload through `window.location.reload();`
*/
type: typeof ReloadPageActionType;
}