mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-03 19:30:16 +01:00
This commit is contained in:
parent
886b5fdc8c
commit
06a6f7c486
3 changed files with 213 additions and 84 deletions
8
app/src/types/index.d.ts
vendored
8
app/src/types/index.d.ts
vendored
|
|
@ -826,7 +826,7 @@ interface IBazaarItem {
|
|||
|
||||
interface IAV {
|
||||
columns: IAVColumn[],
|
||||
filters: [],
|
||||
filters: IAVFilter[],
|
||||
sorts: IAVSort[],
|
||||
name: string,
|
||||
type: "table"
|
||||
|
|
@ -834,6 +834,12 @@ interface IAV {
|
|||
id: string
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
interface IAVSort {
|
||||
column: string,
|
||||
order: "ASC" | "DESC"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue