UNPKG

mapillary-js

Version:

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

19 lines (16 loc) 281 B
/** * Interface that indicates load status. * * @interface ILoadStatus */ export interface ILoadStatus { /** * Number of loaded bytes. */ loaded: number; /** * Total number of bytes to load. */ total: number; } export default ILoadStatus;