union entities intefraces

This commit is contained in:
Владислав Чикалкин 2020-09-23 12:07:52 +03:00
parent 385d47dc06
commit 2ec8300dab

View File

@ -112,4 +112,21 @@ export interface IEvoContact extends IBaseOption {
fullname?: string;
}
export type TEntity = IAccount & ILead & IOpportunity & IQuote;
export type TEntity = IAccount &
ILead &
IOpportunity &
IQuote &
ITransactionCurrency &
IEvoClientType &
IEvoClientRisk &
IEvoBaseproduct &
IEvoLeasingObjectType &
IEvoBrand &
IEvoModel &
IEvoEquipment &
IEvoRewardCondition &
IEvoGPSBrand &
IEvoGPSModel &
IEvoRegion &
IEvoTown &
IEvoContact;