/**
 * Possible states the main {@link GenArtAPI} can be in at any given time.
 */
export type APIState = "init" | "ready" | "play" | "stop" | "error";
