UNPKG

yarn-spinner-runner-ts

Version:

TypeScript parser, compiler, and runtime for Yarn Spinner 3.x with React adapter [NPM package](https://www.npmjs.com/package/yarn-spinner-runner-ts)

14 lines (13 loc) 266 B
/** * Scene configuration types */ export interface ActorConfig { image?: string; } export interface SceneConfig { background: string; actors: Record<string, ActorConfig>; } export interface SceneCollection { scenes: Record<string, SceneConfig>; }