UNPKG

@sofaws/dapp-core

Version:

A library to hold the main logic for a dapp on the Elrond Network

14 lines 732 B
import React from 'react'; import { SignedTransactionsType } from 'types'; import { WithClassnameType } from '../types'; export interface TransactionsToastListPropsType extends WithClassnameType { toastProps?: any; withTxNonce?: boolean; signedTransactions?: SignedTransactionsType; successfulToastLifetime?: number; parentElement?: Element | DocumentFragment; transactionToastClassName?: string; customToastClassName?: string; } export declare const TransactionsToastList: ({ className, transactionToastClassName, customToastClassName, signedTransactions, successfulToastLifetime, parentElement }: TransactionsToastListPropsType) => React.ReactPortal; //# sourceMappingURL=TransactionsToastList.d.ts.map