UNPKG

accelerator-core

Version:

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

10 lines (8 loc) 214 B
import { ActionTypes, } from './ActionTypes'; export interface IStoryOptionUpdateAction<T extends any = any> { readonly type: ActionTypes.StoryOptionUpdate; readonly propName: string; readonly value: T; }