Animation easing functions written typescript.
npm i @fireflysemantics/easeimport { linearEase } from '@fireflysemantics/ease';
let result:number = linearEase(10,10,100,100);
console.log("The linear ease value is: ", result);let linearEase = require('@fireflysemantics/ease');
let result:number = linearEase(10,10,100,100);
console.log("The linear ease value is: ", result);npm run testFrom the root project directory run typedoc to generate the code documenation
npm i
npm run doc
npm i -g http-server
http-server docNow open localhost:8080 and the typedoc can be seen.