From 3498811f48531af8d692e273e3166b535ea9f5cf Mon Sep 17 00:00:00 2001 From: Vanessa Date: Tue, 21 Mar 2023 18:55:56 +0800 Subject: [PATCH] :sparkles: https://github.com/siyuan-note/siyuan/issues/7714 --- app/src/config/AI.ts | 24 ++++++++++++++++++++++++ app/src/config/card.ts | 24 ++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 app/src/config/AI.ts create mode 100644 app/src/config/card.ts diff --git a/app/src/config/AI.ts b/app/src/config/AI.ts new file mode 100644 index 000000000..af4b098bc --- /dev/null +++ b/app/src/config/AI.ts @@ -0,0 +1,24 @@ + +export const AI = { + element: undefined as Element, + genHTML: () => { + return ` +`; + }, + bindEvent: () => { + }, +}; diff --git a/app/src/config/card.ts b/app/src/config/card.ts new file mode 100644 index 000000000..b7e063f06 --- /dev/null +++ b/app/src/config/card.ts @@ -0,0 +1,24 @@ + +export const card = { + element: undefined as Element, + genHTML: () => { + return ` +`; + }, + bindEvent: () => { + }, +};