Currently, I am developing a game using Typescript with PixiJS and GreenSock (or is it GSAP?) for handling all the tweening. I recently encountered a situation where I needed to implement some custom easing using cubic-bezier curves. GreenSock provides a Customease file which can be obtained after creating an account, and that's exactly what I did. However, I faced a roadblock when I realized that the file lacks a Typescript definition.
Despite my efforts, I am clueless about how to integrate this CustomEase.js file into my application without a type definition file. I attempted to utilize a solution from https://github.com/bigp/gsap-customease, but unfortunately, it proved to be ineffective. It appears to be outdated and irrelevant to my requirements.
Essentially, I am seeking guidance on the proper approach to incorporating the CustomEase.js file into my Typescript-based application. Any assistance or insights would be greatly appreciated.