UNPKG

mapillary-js

Version:

A WebGL interactive street imagery library

14 lines (11 loc) 284 B
import { ComponentEvent } from "./ComponentEvent"; /** * Interface for component play events. */ export interface ComponentPlayEvent extends ComponentEvent { /** * Value indiciating if the component is playing or not. */ playing: boolean; type: "playing"; }