Vanessa 2023-06-08 18:25:33 +08:00
parent 591e451c3e
commit df17081df5
2 changed files with 24 additions and 4 deletions

View file

@ -799,3 +799,23 @@ interface IBazaarItem {
hUpdated: string
preferredFunding: string
}
interface IAVColumn {
width: number,
icon: string,
id: string,
name: string,
wrap: boolean,
type: string,
}
interface IAVRow {
id: string,
cells: IAVCell[]
}
interface IAVCell {
color: string,
bgColor: string,
value: string,
}