🧹 cleanup

This commit is contained in:
ful1e5 2020-08-15 17:29:02 +05:30
parent 968baca855
commit d5072fafc3

View file

@ -1,20 +0,0 @@
type AnimatedCursors = {
[name: string]: {
frames: number;
};
};
type AnimatedClip = {
x: number;
y: number;
width: number;
height: number;
};
interface RenderConfig {
staticSvgs: Array<string>;
animatedCursors: AnimatedCursors;
animatedClip: AnimatedClip;
bitmapsDir: string;
svgsDir: string;
}