fuwari/src/global.d.ts
2025-04-08 23:08:31 +09:00

8 lines
164 B
TypeScript

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