UNPKG

@sofaws/dapp-core

Version:

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

17 lines 715 B
/// <reference types="react" /> import { WithClassnameType } from '../../types'; export interface AddressTablePropsType extends WithClassnameType { loading: boolean; accounts: string[]; startIndex: number; selectedAddress?: string; onSelectAddress: (address: { address: string; index: number; } | null) => void; onGoToPrevPage: () => void; onGoToNextPage: () => void; onConfirmSelectedAddress: () => void; } export declare const AddressTable: ({ loading, accounts, startIndex, selectedAddress, onGoToPrevPage, onGoToNextPage, onConfirmSelectedAddress, onSelectAddress, className }: AddressTablePropsType) => JSX.Element; //# sourceMappingURL=AddressTable.d.ts.map