accelerator-core
Version:
[](https://travis-ci.org/furkleindustries/accelerator-core)
21 lines (19 loc) • 451 B
text/typescript
import {
ActionTypes,
} from './ActionTypes';
import {
IAction,
} from './IAction';
import {
ILastLinkTagsAware,
} from '../interfaces/ILastLinkTagsAware';
import {
IPassage,
} from '../passages/IPassage';
export interface IPassageNavigationAction extends IAction {
readonly type: ActionTypes.PassageNavigation;
readonly value: (
{ readonly passage: IPassage } &
{ readonly linkTags: ILastLinkTagsAware['lastLinkTags'] }
);
}