mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-01 07:36:39 +08:00
12 lines
178 B
TypeScript
12 lines
178 B
TypeScript
/// <reference types="vite/client" />
|
|
import type { Alpine } from "alpinejs";
|
|
|
|
export {};
|
|
|
|
declare global {
|
|
interface Window {
|
|
Alpine: Alpine;
|
|
SearchWidget: any;
|
|
}
|
|
}
|