UNPKG

@ssgoi/svelte

Version:

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

10 lines (9 loc) 284 B
interface Props { id: string; children: () => any; as?: keyof HTMLElementTagNameMap; class?: string; } declare const SsgoiTransition: import("svelte").Component<Props, {}, "">; type SsgoiTransition = ReturnType<typeof SsgoiTransition>; export default SsgoiTransition;