UNPKG

@ssgoi/svelte

Version:

Svelte bindings for SSGOI - Native app-like page transitions for Svelte and SvelteKit applications

9 lines (8 loc) 249 B
import type { SsgoiConfig } from "@ssgoi/core/types"; interface Props { config: SsgoiConfig; children: () => any; } declare const Ssgoi: import("svelte").Component<Props, {}, "">; type Ssgoi = ReturnType<typeof Ssgoi>; export default Ssgoi;