Files
theme-earth/env.d.ts
Ryan Wang 87ececb908 feat: add overlay menu for mobile device
Signed-off-by: Ryan Wang <i@ryanc.cc>
2022-10-06 22:06:43 +08:00

11 lines
155 B
TypeScript

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