accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
23 lines (21 loc) • 450 B
text/typescript
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>;
}