@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
10 lines • 434 B
TypeScript
import { ReactNode } from 'react';
import { SignedTransactionType } from 'types/index';
export interface TransactionDetailsType {
title?: ReactNode;
isTimedOut?: boolean;
transactions?: SignedTransactionType[];
className?: string;
}
export declare const TransactionDetails: ({ title, transactions, isTimedOut, className }: TransactionDetailsType) => JSX.Element | null;
//# sourceMappingURL=TransactionDetails.d.ts.map