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