accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
23 lines (21 loc) • 507 B
text/typescript
import {
IHistory,
} from '../../state/IHistory';
import {
IPassage,
} from '../../passages/IPassage';
import {
IStoryStateFrame,
} from '../../state/IStoryStateFrame';
import {
MaybeReadonlyArray,
} from '../../typeAliases/MaybeReadonlyArray';
import {
Tag,
} from '../../tags/Tag';
export interface IPassageRendererWrapperStateProps {
readonly history: IHistory;
readonly lastLinkTags: MaybeReadonlyArray<Tag>;
readonly passageObject: IPassage;
readonly storyState: IStoryStateFrame;
}