After downloading the GSAP package via npm, I am keen on importing the TweenLite class to my TypeScript app. While importing all of GSAP can be achieved by using require('gsap');
and it functions correctly, this method does not work in TypeScript.
I aspire to import TweenLite like so: import TweenLite from 'gsap';
.
Is this achievable?