diff --git a/packages/round/src/types.ts b/packages/round/src/types.ts index f8767de1..aa8d3280 100644 --- a/packages/round/src/types.ts +++ b/packages/round/src/types.ts @@ -19,11 +19,15 @@ type AnimatedClip = { }; interface Config { - staticSvgs: Array; + staticSvgs: Array | undefined; bitmapsDir: string; svgsDir: string; - animatedCursors: AnimatedCursors; + animatedCursors: AnimatedCursors | undefined; animatedClip: AnimatedClip; } -export { ColorSchema, Config }; +interface Configs { + [name: string]: Config; +} + +export { ColorSchema, Config, Configs };