Fix type error (#27152)

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
GuanMu
2025-10-20 19:35:46 +08:00
committed by GitHub
parent 977690590e
commit 6217c96576
8 changed files with 45 additions and 36 deletions

4
web/types/mdx.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module '*.mdx' {
const MDXComponent: (props?: Record<string, unknown>) => JSX.Element
export default MDXComponent
}