Files
fuwari/src/global.d.ts
Katsuyuki Karasawa 286b050fa8 format all code (#386)
2025-04-08 23:08:31 +09:00

9 lines
164 B
TypeScript

import type { AstroIntegration } from "@swup/astro";
declare global {
interface Window {
// type from '@swup/astro' is incorrect
swup: AstroIntegration;
}
}