ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
11 lines (10 loc) • 1.36 kB
TypeScript
import type { ICreateBlockchainTransactionData, ICreateBlockchainTransferTransactionData, ICreateGatewayCryptoTransactionData, ICreateSystemTransactionData, IInquiryTransactionData, TransactionResultInquiry } from "../../types";
import type { TransactionData, TransactionInquiry } from "../../types";
declare const createDefaultTransactionData: (overrides?: Partial<TransactionData>) => TransactionData;
declare const createDefaultTransactionInquiryResultData: (overrides?: Partial<TransactionResultInquiry>) => TransactionResultInquiry;
declare const fillTransactionInquiryData: (data: IInquiryTransactionData) => TransactionInquiry;
declare const fillCreateBlockchainTransactionData: (data: ICreateBlockchainTransactionData) => TransactionData;
declare const fillCreateBlockchainTransferTransactionData: (data: ICreateBlockchainTransferTransactionData) => TransactionData;
declare const fillCreateGatewayCryptoTransactionData: (data: ICreateGatewayCryptoTransactionData) => TransactionData;
declare const fillCreateSystemTransactionData: (data: ICreateSystemTransactionData) => TransactionData;
export { createDefaultTransactionData, createDefaultTransactionInquiryResultData, fillTransactionInquiryData, fillCreateSystemTransactionData, fillCreateGatewayCryptoTransactionData, fillCreateBlockchainTransactionData, fillCreateBlockchainTransferTransactionData, };