UNPKG

@test-org122/merchant-iframe

Version:

Mediator iFrame package. This is used to sandbox the connector code away from the running hypernet core.

13 lines (11 loc) 417 B
import { IMerchantConnector } from "@test-org122/merchant-connector"; import { Subject } from "rxjs"; export class MerchantContext { constructor( public merchantUrl: URL, public onMerchantConnectorActivated: Subject<IMerchantConnector>, public validatedMerchantCode: string | null, public validatedMerchantSignature: string | null, public merchantConnector: IMerchantConnector | null, ) {} }