🎨 database

This commit is contained in:
Vanessa 2023-08-02 00:14:05 +08:00
parent 683e9a04ed
commit 0129825335
5 changed files with 32 additions and 15 deletions

View file

@ -932,5 +932,13 @@ interface IAVCellValue {
mSelect?: { content: string, color: string }[]
block?: { content: string, id: string }
url?: { content: string }
date?: { content?: number, content2?: number, hasEndDate?: boolean }
date?: IAVCellDateValue
}
interface IAVCellDateValue {
content?: number,
isNotEmpty: boolean
content2?: number,
isNotEmpty2: boolean
hasEndDate?: boolean
}