@sofaws/dapp-core
Version:
A library to hold the main logic for a dapp on the Elrond Network
11 lines • 554 B
TypeScript
import { ReactNode } from 'react';
import { ServerTransactionType } from 'types/serverTransactions.types';
import { WithClassnameType } from '../types';
export interface TransactionsTableType extends WithClassnameType {
transactions: ServerTransactionType[];
title?: ReactNode;
directionCol?: boolean;
showLockedAccounts?: boolean;
}
export declare const TransactionsTable: ({ transactions, directionCol, showLockedAccounts, className, title }: TransactionsTableType) => JSX.Element | null;
//# sourceMappingURL=TransactionsTable.d.ts.map