mapillary-js/src/Mapillary.ts
Oscar Lorentzon a310ee4387 Expose tag component API in namespace.
Define what classes should be exposed in component ts file.
Import all properties as TagComponent and export in global
Mapillary object.
2016-05-13 11:39:52 +02:00

12 lines
305 B
TypeScript

/**
* mapillary-js is a WebGL JavaScript library for exploring street level imagery
* @name Mapillary
*/
export {EdgeDirection} from "./Edge";
export {RenderMode} from "./Render";
export {ImageSize, Viewer} from "./Viewer";
import * as TagComponent from "./component/tag/Tag";
export {TagComponent};