@humanspeak/svelte-motion
Version:
A lightweight animation library for Svelte 5 that provides smooth, hardware-accelerated animations. Features include spring physics, custom easing, and fluid transitions. Built on top of the motion library, it offers a simple API for creating complex anim
9 lines (8 loc) • 330 B
TypeScript
import type { Snippet } from 'svelte';
import type { MotionConfigProps } from '../types.js';
type $$ComponentProps = MotionConfigProps & {
children?: Snippet;
};
declare const MotionConfig: import("svelte").Component<$$ComponentProps, {}, "">;
type MotionConfig = ReturnType<typeof MotionConfig>;
export default MotionConfig;