UNPKG

@laubloch/scrolly-motion

Version:

Advanced scroll animation library with breakpoint support, timeline presets.

12 lines (11 loc) 334 B
/** * ScrollyMotion Timeline Parser * Handles parsing of timeline animations. */ import type { TimelineStep } from "../../types"; import { ValueParser } from "./ValueParser"; export declare class TimelineParser { private valueParser; constructor(valueParser: ValueParser); parse(timelineStr: string): TimelineStep[]; }