initial commit

This commit is contained in:
Jiao77
2025-09-29 05:57:18 +08:00
commit 9c0051c92b
73 changed files with 18737 additions and 0 deletions

9
src/types/global.d.ts vendored Normal file
View File

@@ -0,0 +1,9 @@
// 扩展 Window 接口以支持自定义属性
declare global {
interface Window {
CodeHighlight?: any;
codeHighlightInstance?: any;
}
}
export {};