refactor(doc-data): Use static imports for doc entries

This commit is contained in:
hyper
2026-06-30 18:54:34 +08:00
parent d72d4e7bde
commit a05b0f4291
2 changed files with 55 additions and 43 deletions
+6 -1
View File
@@ -11,6 +11,11 @@ interface ImportMeta {
options: {
recursive?: boolean;
regExp?: RegExp;
}
},
): WebpackContext;
}
declare module "*.md" {
const content: string;
export default content;
}