UNPKG

accelerator-core

Version:

[![Build Status](https://travis-ci.org/furkleindustries/accelerator-core.svg?branch=master)](https://travis-ci.org/furkleindustries/accelerator-core)

14 lines (12 loc) 372 B
import { ActionTypes, } from '../ActionTypes'; import { IStoryRequiresFullRerenderAction, } from '../IStoryRequiresFullRerenderAction'; export const createStoryRequiresFullRerenderAction = (value: boolean): IStoryRequiresFullRerenderAction => ( Object.freeze({ type: ActionTypes.StoryRequiresFullRerender, value, }) as IStoryRequiresFullRerenderAction );