@test-org122/merchant-iframe
Version:
Mediator iFrame package. This is used to sandbox the connector code away from the running hypernet core.
7 lines • 359 B
TypeScript
import { ResultAsync } from "neverthrow";
export interface IMerchantConnectorRepository {
getMerchantCode(merchantUrl: URL): ResultAsync<string, Error>;
getMerchantSignature(merchantUrl: URL): ResultAsync<string, Error>;
getMerchantAddress(merchantUrl: URL): ResultAsync<string, Error>;
}
//# sourceMappingURL=IMerchantConnectorRepository.d.ts.map