diff --git a/packages/round/src/types.ts b/packages/round/src/types.ts index aa8d3280..c47aa3d5 100644 --- a/packages/round/src/types.ts +++ b/packages/round/src/types.ts @@ -2,6 +2,7 @@ interface ColorSchema { [name: string]: { base: string; outline: string; + watchBackground: string; }; } @@ -19,10 +20,10 @@ type AnimatedClip = { }; interface Config { - staticSvgs: Array | undefined; + staticCursors: Array; bitmapsDir: string; svgsDir: string; - animatedCursors: AnimatedCursors | undefined; + animatedCursors: AnimatedCursors; animatedClip: AnimatedClip; }