ChatGPT-Next-Web/env.d.ts
2023-03-31 11:01:30 +08:00

12 lines
178 B
TypeScript

/// <reference types="vite/client" />
import type { Alpine } from "alpinejs";
export {};
declare global {
interface Window {
Alpine: Alpine;
SearchWidget: any;
}
}