mirror of
https://github.com/saicaca/fuwari.git
synced 2026-01-11 23:02:53 +01:00
9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
import type { AstroIntegration } from "@swup/astro";
|
|
|
|
declare global {
|
|
interface Window {
|
|
// type from '@swup/astro' is incorrect
|
|
swup: AstroIntegration;
|
|
}
|
|
}
|