UNPKG

accelerator-core

Version:

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

23 lines (21 loc) 450 B
import { IPassage, } from '../passages/IPassage'; import { IState, } from './IState'; import { IStoryStateFrame, } from './IStoryStateFrame'; import { Store, } from 'redux'; import { ITag, } from '../tags/ITag'; export interface ICurrentStoryStateMutationArgs { readonly currentPassageObject: IPassage; readonly store: Store<IState>; readonly lastLinkTags: readonly ITag[]; readonly updatedStateProps: Partial<IStoryStateFrame>; }