gsap
Version:
GSAP is a JavaScript library for building high-performance animations that work in **every** major browser. Animate CSS, SVG, canvas, React, Vue, WebGL, colors, strings, motion paths, generic objects...anything JavaScript can touch! No other library deliv
24 lines (18 loc) • 573 B
TypeScript
// TODO
declare const MotionPathHelper: any;
declare module "gsap/MotionPathHelper" {
// TODO
export const MotionPathHelper: any;
export { MotionPathHelper as default };
}
declare module "gsap/dist/MotionPathHelper" {
export * from "gsap/MotionPathHelper";
export { MotionPathHelper as default } from "gsap/MotionPathHelper";
}
declare module "gsap/src/MotionPathHelper" {
export * from "gsap/MotionPathHelper";
export { MotionPathHelper as default } from "gsap/MotionPathHelper";
}
declare module "gsap/all" {
export * from "gsap/MotionPathHelper";
}