interface IAny{
  [props: string]: any;
}

interface IAction extends IAny{
  type: string
}