UNPKG

accelerator-core

Version:

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

13 lines (11 loc) 267 B
import { ActionTypes, } from '../ActionTypes'; import { IPassageTimeAction, } from '../IPassageTimeAction'; export function createPassageTimeAction(): IPassageTimeAction { return Object.freeze({ type: ActionTypes.PassageTime, }) as IPassageTimeAction; }