UNPKG

@bitworks/svelte-split-text-animation

Version:

Animation of text split into characters, words or lines. Using split-type and GSAP

22 lines (21 loc) 665 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { animationY?: string | undefined; animationDuration?: number | undefined; animationStagger?: number | undefined; animationType?: string | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export type SplitTextProps = typeof __propDef.props; export type SplitTextEvents = typeof __propDef.events; export type SplitTextSlots = typeof __propDef.slots; export default class SplitText extends SvelteComponentTyped<SplitTextProps, SplitTextEvents, SplitTextSlots> { } export {};