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