mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-11 09:44:21 +01:00
This commit is contained in:
parent
b65d56d407
commit
b2f798ed18
2 changed files with 58 additions and 10 deletions
10
app/src/types/index.d.ts
vendored
10
app/src/types/index.d.ts
vendored
|
|
@ -837,7 +837,7 @@ interface IAV {
|
|||
interface IAVFilter {
|
||||
column: string,
|
||||
operator: "=" | "!=" | ">" | ">=" | "<" | "<=" | "Contains" | "Does not contains" | "Is empty" | "Is not empty" | "Starts with" | "Ends with" | "Is between" | "Is relative to today"
|
||||
value: string
|
||||
value: IAVCellValue
|
||||
}
|
||||
|
||||
interface IAVSort {
|
||||
|
|
@ -864,6 +864,12 @@ interface IAVCell {
|
|||
id: string,
|
||||
color: string,
|
||||
bgColor: string,
|
||||
value: any,
|
||||
value: IAVCellValue,
|
||||
valueType: TAVCol,
|
||||
}
|
||||
|
||||
interface IAVCellValue {
|
||||
content: string,
|
||||
content2?: string,
|
||||
color?: string,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue