8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import type { AstroIntegration } from "@swup/astro";
|
|
|
|
declare global {
|
|
interface Window {
|
|
// type from '@swup/astro' is incorrect
|
|
swup: AstroIntegration;
|
|
}
|
|
}
|