mirror of
https://github.com/halo-dev/theme-earth.git
synced 2025-10-14 06:21:09 +00: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;
|
|
}
|
|
}
|