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 Pick, 'typeOf' | 'result' | 'project' | 'object' | 'location' | 'error' | 'instrument' | 'agent'> { } /** * use action */ export type IAction> = IBaseAction;