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