You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
417 B

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