mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-13 18:54:21 +01:00
This commit is contained in:
parent
1278c30e9d
commit
526c830535
4 changed files with 105 additions and 26 deletions
18
app/src/types/index.d.ts
vendored
18
app/src/types/index.d.ts
vendored
|
|
@ -39,7 +39,21 @@ type TEventBus = "ws-main" |
|
|||
"open-menu-av" | "open-menu-content" | "open-menu-breadcrumbmore" |
|
||||
"loaded-protyle"
|
||||
type TAVCol = "text" | "date" | "number" | "relation" | "rollup" | "select" | "block" | "mSelect"
|
||||
|
||||
type TAVFilterOperator =
|
||||
"="
|
||||
| "!="
|
||||
| ">"
|
||||
| ">="
|
||||
| "<"
|
||||
| "<="
|
||||
| "Contains"
|
||||
| "Does not contains"
|
||||
| "Is empty"
|
||||
| "Is not empty"
|
||||
| "Starts with"
|
||||
| "Ends with"
|
||||
| "Is between"
|
||||
| "Is relative to today"
|
||||
declare module "blueimp-md5"
|
||||
|
||||
interface Window {
|
||||
|
|
@ -836,7 +850,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"
|
||||
operator: TAVFilterOperator,
|
||||
value: IAVCellValue
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue