UNPKG

@cenoa/waas-js-sdk

Version:

Official Cenoa Wallet as a Service SDK

12 lines (11 loc) 787 B
import Types from './types'; import Errors from './errors'; import UserManager from './user-manager/UserManager'; import UserListHelper from './user-manager/UserListHelper'; import WalletManager from './wallet-manager/WalletManager'; import TransactionManager from './transaction-manager/TransactionManager'; import TransactionListHelper from './transaction-manager/TransactionListHelper'; import PartnerTransactionListHelper from './transaction-manager/PartnerTransactionListHelper'; declare function init(sdkInitOptions: Types.SdkInitOptions): void; declare function registerWebhookURL(url: string): Promise<void>; export { init, registerWebhookURL, Types, UserManager, UserListHelper, WalletManager, TransactionManager, TransactionListHelper, PartnerTransactionListHelper, Errors, };