Vanessa 2023-07-06 22:20:13 +08:00
parent 851ce86084
commit 26788e6985
2 changed files with 19 additions and 12 deletions

View file

@ -882,8 +882,11 @@ interface IAVCell {
valueType: TAVCol,
}
interface IAVCellValue {
content: string,
content2?: string,
color?: string,
type IAVCellValue = {
[key in TAVCol]?: {
content: string
content2?: string
color?: string
id?: string
}
}