import { ActionTypes, } from './ActionTypes'; export interface IStoryOptionUpdateAction { readonly type: ActionTypes.StoryOptionUpdate; readonly propName: string; readonly value: T; }