UNPKG

mapillary-js

Version:

A WebGL interactive street imagery library

15 lines (12 loc) 332 B
import { TagMode } from "../tag/TagMode"; import { ComponentEvent } from "./ComponentEvent"; /** * Interface for component tag mode events. */ export interface ComponentTagModeEvent extends ComponentEvent { /** * Value indicating the current tag mode of the component. */ mode: TagMode; type: "tagmode"; }