UNPKG

accelerator-core

Version:

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

12 lines (10 loc) 239 B
import { ActionTypes, } from './ActionTypes'; import { IStoryStateFrame, } from '../state/IStoryStateFrame'; export interface IStoryStateAction { readonly type: ActionTypes.StoryState; readonly value: Partial<IStoryStateFrame>; }