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) • 547 B
TypeScript
// TODO
declare const MorphSVGPlugin: any;
declare module "gsap/MorphSVGPlugin" {
// TODO
export const MorphSVGPlugin: any;
export { MorphSVGPlugin as default };
}
declare module "gsap/dist/MorphSVGPlugin" {
export * from "gsap/MorphSVGPlugin";
export { MorphSVGPlugin as default } from "gsap/MorphSVGPlugin";
}
declare module "gsap/src/MorphSVGPlugin" {
export * from "gsap/MorphSVGPlugin";
export { MorphSVGPlugin as default } from "gsap/MorphSVGPlugin";
}
declare module "gsap/all" {
export * from "gsap/MorphSVGPlugin";
}