mirror of
https://github.com/doocs/advanced-java.git
synced 2026-08-18 10:43:29 +08:00
Align with sibling Doocs projects: add TypeScript tooling, pin GitHub Actions to Node 24-compatible versions, and bump pnpm to v10.
8 lines
206 B
TypeScript
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;
|
|
}
|