UNPKG

mapillary-js

Version:

WebGL JavaScript library for displaying street level imagery from mapillary.com

16 lines (13 loc) 285 B
import {IKey} from "../../API"; /** * Interface that describes the raw image sequence properties. * * @interface ISequence */ export interface ISequence extends IKey { /** * The ordered image keys of the sequence. */ keys: string[]; } export default ISequence;