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