🏷️ Types cleanup

This commit is contained in:
ful1e5 2020-09-28 18:00:14 +05:30
parent 35ba9640d0
commit ca5de2023f

View file

@ -1,17 +1,3 @@
interface Config {
staticCursors: string[];
animatedCursors: string[];
bitmapsDir: string;
}
interface PathConfig {
rawSvgsDir: string;
schemesPath: string;
bitmapsPath: string;
animatedCursors: string[];
staticCursors: string[];
}
interface Frames { interface Frames {
[fileName: string]: { [fileName: string]: {
buffer: Buffer; buffer: Buffer;
@ -36,4 +22,4 @@ interface PixelDiffRate {
}; };
} }
export { Config, Frames, Colors, ThemeColors, PathConfig, PixelDiffRate }; export { Frames, Colors, ThemeColors, PixelDiffRate };