Fix: Improve TS Warning For http_api_reference.md (#8172)

### What problem does this PR solve?

https://github.com/infiniflow/ragflow/issues/8157
The current master code should work fine, but hI ave some warnings, so I
added a declare to improve the warning

### Type of change
- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
Stephen Hu
2025-06-12 14:20:15 +08:00
committed by GitHub
parent 84b4e32c34
commit e7c85e569b

4
web/src/custom.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
declare module '*.md' {
const content: string;
export default content;
}