Files
advanced-java/docs/.vitepress/env.d.ts
Libin YANG 3003dd0267 chore: upgrade deps, migrate theme to TypeScript, and update GitHub Actions (#345)
Align with sibling Doocs projects: add TypeScript tooling, pin GitHub Actions to Node 24-compatible versions, and bump pnpm to v10.
2026-06-25 09:06:50 +08:00

8 lines
206 B
TypeScript

/// <reference types="vitepress/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<object, object, unknown>;
export default component;
}