UNPKG

mapillary-js

Version:

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

14 lines (12 loc) 187 B
/** * Interface that describes an object with a unique key. * * @interface IKey */ export interface IKey { /** * Unique key. */ key: string; } export default IKey;