remove old unused code

move to esm
This commit is contained in:
2023-07-20 18:15:11 +02:00
parent be24f193ce
commit 86ccdf3701
19 changed files with 1078 additions and 3021 deletions

10
dist/easings/easings.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
type EasingCollection = {
out: any;
in: any;
inOut: any;
};
type EasingFunction = (duration: number, delay?: number) => EasingCollection;
declare const Easings: {
[key: string]: EasingFunction;
};
export default Easings;