import { IParticipant, IAction as IBaseAction, IAttributes as IBaseAttributes } from '../action'; import { ActionType } from '../actionType'; export type IObject = any; export type IResult = any; export type IPurpose = any; export interface IAttributes extends IBaseAttributes { purpose?: IPurpose; recipient: IParticipant; } /** * 承認アクション */ export type IAction> = IBaseAction;