initial commit

This commit is contained in:
Jiao77
2026-03-01 09:13:24 +08:00
commit 72baa341cc
43 changed files with 12560 additions and 0 deletions

15
src/env.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
/// <reference path="../.astro/types.d.ts" />
/// <reference types="astro/client" />
// Vue 组件类型声明
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
// MDX 文件类型声明
declare module '*.mdx' {
import type { MDXComponent } from 'mdx/types';
export default MDXComponent;
}