UNPKG

accelerator-core

Version:

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

21 lines (19 loc) 451 B
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'] } ); }