UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

16 lines 722 B
import type { Hash } from '@xylabs/hex'; import React from 'react'; import type { EllipsisTableCellProps } from './EllipsisTableCell.tsx'; export interface HashTableCellProps extends EllipsisTableCellProps { /** @deprecated - archives are no longer used */ archive?: string; dataType?: 'block' | 'payload'; /** @deprecated - use event listeners instead of link building via props */ exploreDomain?: string; /** @deprecated - use event listeners instead of link building via props */ network?: string; /** @deprecated - onClick instead */ onHashClick?: (value: Hash) => void; } export declare const HashTableCell: React.FC<HashTableCellProps>; //# sourceMappingURL=HashTableCell.d.ts.map