UNPKG

@genart-api/core

Version:

Platform-independent extensible API for browser-based generative art

5 lines (4 loc) 152 B
/** * Possible states the main {@link GenArtAPI} can be in at any given time. */ export type APIState = "init" | "ready" | "play" | "stop" | "error";