bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
19 lines (18 loc) • 839 B
TypeScript
import { BlueSnapConfig } from './BlueSnapConfig';
import { RefundGateway } from '../refund/RefundGateway';
import { WalletGateway } from '../wallet/WalletGateway';
import { VaultedShopperGateway } from '../vaultedShopper/VaultedShopperGateway';
import { MarketplaceGateway } from '../marketplace/MarketplaceGateway';
import { SubscriptionGateway } from '../subscription/SubscriptionGateway';
import { TransactionGateway } from '../transaction/TransactionGateway';
import { TestingGateway } from '../testing/TestingGateway';
export declare class BlueSnapGateway {
marketplace: MarketplaceGateway;
refund: RefundGateway;
shopper: VaultedShopperGateway;
subscription: SubscriptionGateway;
wallet: WalletGateway;
transaction: TransactionGateway;
testing: TestingGateway;
constructor(config: BlueSnapConfig);
}