mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-23 08:46:09 +01:00
🎨 Update av
This commit is contained in:
parent
4bc4684163
commit
639f083d9a
1 changed files with 6 additions and 1 deletions
|
|
@ -18,8 +18,13 @@ package av
|
|||
|
||||
type Cell struct {
|
||||
ID string `json:"id"`
|
||||
Value string `json:"value"`
|
||||
Value *CellValue `json:"value"`
|
||||
RenderValue interface{} `json:"renderValue"`
|
||||
Color string `json:"color"`
|
||||
BgColor string `json:"bgColor"`
|
||||
}
|
||||
|
||||
type CellValue struct {
|
||||
Type ColumnType `json:"type"`
|
||||
Value interface{} `json:"value"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue