UNPKG

@iexec/dataprotector

Version:

This product enables users to confidentially store data–such as mail address, documents, personal information ...

14 lines 650 B
import { IExecDataProtectorCore } from './dataProtectorCore/IExecDataProtectorCore.js'; import { IExecDataProtectorSharing } from './dataProtectorSharing/IExecDataProtectorSharing.js'; import { IExecDataProtectorModule } from './IExecDataProtectorModule.js'; class IExecDataProtector extends IExecDataProtectorModule { core; sharing; constructor(ethProvider, options) { super(ethProvider, options); this.core = new IExecDataProtectorCore(ethProvider, options); this.sharing = new IExecDataProtectorSharing(ethProvider, options); } } export { IExecDataProtector }; //# sourceMappingURL=IExecDataProtector.js.map