import { IAction as IBaseAction, IAttributes as IBaseAttributes } from '../../action'; import { ActionType } from '../../actionType'; export type IObject = any; export type IResult = any; export interface IAttributes extends IBaseAttributes { } /** * 返却アクション */ export type IAction> = IBaseAction;