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)

10 lines (9 loc) 302 B
/** * Scene configuration parser using js-yaml * Supports YAML string or plain object */ import type { SceneCollection } from "./types.js"; /** * Parse scene configuration from YAML string or object */ export declare function parseScenes(input: string | Record<string, unknown>): SceneCollection;