Browse Source

:art: https://github.com/siyuan-note/siyuan/issues/9888

Vanessa 1 year ago
parent
commit
7cb22e51c0
1 changed files with 5 additions and 4 deletions
  1. 5 4
      app/src/types/index.d.ts

+ 5 - 4
app/src/types/index.d.ts

@@ -1084,10 +1084,11 @@ interface IAVColumn {
         name: string,
         color: string,
     }[],
-    relationAvID: string    // 关联的属性视图 ID
-    isBiRelation: string    // 是否双向关联
-    backRelationKeyID: string   // 双向关联时回链关联列的 ID
-    rollupKeyID: string // 汇总列 ID
+    relation?: {
+        avID: string
+        backKeyID: string
+        isTwoWay: boolean
+    }
 }
 
 interface IAVRow {