From 32103c92d364df5af3c59249c5f145f66a193dd6 Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+KaizIqbal@users.noreply.github.com> Date: Sun, 16 Aug 2020 17:43:26 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=8F=B7=EF=B8=8F=20typing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/round/src/types.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; }