mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
92c0f0ec25
Package skeleton with build tooling (Vite, Vitest, ESLint), TypeScript configuration, styles, workspace integration, and documentation scaffolding.
8 lines
201 B
TypeScript
8 lines
201 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module "*.vue" {
|
|
import type { DefineComponent } from "vue";
|
|
const component: DefineComponent<object, object, unknown>;
|
|
export default component;
|
|
}
|