From 7cb22e51c00c71c8c4bc9fc70c99f8a951b24d0c Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sat, 23 Dec 2023 23:53:21 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/9888 --- app/src/types/index.d.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app/src/types/index.d.ts b/app/src/types/index.d.ts index 473b64482..88d1da3c4 100644 --- a/app/src/types/index.d.ts +++ b/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 {