🏷️ typing

This commit is contained in:
ful1e5 2020-08-16 17:43:26 +05:30
parent c92febbfe9
commit 32103c92d3

View file

@ -2,6 +2,7 @@ interface ColorSchema {
[name: string]: { [name: string]: {
base: string; base: string;
outline: string; outline: string;
watchBackground: string;
}; };
} }
@ -19,10 +20,10 @@ type AnimatedClip = {
}; };
interface Config { interface Config {
staticSvgs: Array<string> | undefined; staticCursors: Array<string>;
bitmapsDir: string; bitmapsDir: string;
svgsDir: string; svgsDir: string;
animatedCursors: AnimatedCursors | undefined; animatedCursors: AnimatedCursors;
animatedClip: AnimatedClip; animatedClip: AnimatedClip;
} }