From 8fdb00143dc934404da911f141a629198e157f4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=A4=E6=9C=88?= Date: Fri, 14 Jun 2024 13:54:31 +0800 Subject: [PATCH] chore: fix md type (#247) Signed-off-by: yazhou --- docs/declarations.d.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 docs/declarations.d.ts diff --git a/docs/declarations.d.ts b/docs/declarations.d.ts new file mode 100644 index 00000000..6cc0057c --- /dev/null +++ b/docs/declarations.d.ts @@ -0,0 +1,4 @@ +declare module '*.md' { + const content: string; + export default content; + } \ No newline at end of file