mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-28 09:54:07 +01:00
This commit is contained in:
parent
e520e0aa18
commit
a541961ee5
6 changed files with 89 additions and 7 deletions
9
app/src/types/index.d.ts
vendored
9
app/src/types/index.d.ts
vendored
|
|
@ -37,7 +37,7 @@ type TEventBus = "ws-main" |
|
|||
"open-menu-blockref" | "open-menu-fileannotationref" | "open-menu-tag" | "open-menu-link" | "open-menu-image" |
|
||||
"open-menu-av" | "open-menu-content" |
|
||||
"loaded-protyle"
|
||||
type TAVCol = "text" | "date" | "number" | "relation" | "rollup" | "select" | "block"| "mSelect"
|
||||
type TAVCol = "text" | "date" | "number" | "relation" | "rollup" | "select" | "block" | "mSelect"
|
||||
|
||||
declare module "blueimp-md5"
|
||||
|
||||
|
|
@ -826,7 +826,12 @@ interface IBazaarItem {
|
|||
interface IAV {
|
||||
columns: IAVColumn[],
|
||||
filters: [],
|
||||
sorts: [],
|
||||
sorts: IAVSort[],
|
||||
}
|
||||
|
||||
interface IAVSort {
|
||||
column: string,
|
||||
order: "ASC" | "DESC"
|
||||
}
|
||||
|
||||
interface IAVColumn {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue