This commit is contained in:
Vanessa 2023-09-22 20:24:00 +08:00
parent 67574984d0
commit e8c15eebb6
7 changed files with 192 additions and 37 deletions

View file

@ -998,12 +998,6 @@ interface IAVCell {
valueType: TAVCol,
}
interface IAVCellAssetValue {
content: string,
name: string,
type: "file" | "image"
}
interface IAVCellValue {
type?: TAVCol,
text?: {
@ -1015,10 +1009,7 @@ interface IAVCellValue {
format?: string,
formattedContent?: string
},
mSelect?: {
content: string,
color: string
}[]
mSelect?: IAVCellSelectValue[]
mAsset?: IAVCellAssetValue[]
block?: {
content: string,
@ -1043,3 +1034,14 @@ interface IAVCellDateValue {
isNotEmpty2?: boolean
hasEndDate?: boolean
}
interface IAVCellSelectValue {
content: string,
color: string
}
interface IAVCellAssetValue {
content: string,
name: string,
type: "file" | "image"
}