UNPKG

@chevre/domain

Version:

Chevre Domain Library for Node.js

15 lines (14 loc) 552 B
import * as GMO from '@motionpicture/gmo-service'; import * as factory from '../../../factory'; import { Settings } from '../../../settings'; /** * 決済代行側の取引状態参照 * 存在しない場合NotFoundエラー */ declare function searchGMOTrade(params: { availableChannel: Pick<factory.serviceChannel.IServiceChannelCreditCard, 'credentials' | 'serviceUrl'>; paymentMethodId: string; shopId: string; shopPass: string; }, settings: Settings): Promise<GMO.factory.credit.ISearchTradeResult>; export { searchGMOTrade };