namespace TableTypes { export interface tHeader { list: any[] bgColor?: string textColor?: string } export interface tRow { sequence: string[] colorSequence: string[] values: Record } export interface mobileCard { cardData: { block: string date: string miner: string gasLimit: string gasUsed: string } } } export default TableTypes