import { IDataScheme } from "./data-scheme.interface"; import { IParty } from "./party.interface"; export interface IAgreementHolder{ agreementHolderPartyKey: string agreementHolderFullName: string agreementHolderContactPointKey: string companyDataScheme: IDataScheme; personDataScheme: IDataScheme; party: IParty }