mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-25 14:07:28 +00:00
Define what classes should be exposed in component ts file. Import all properties as TagComponent and export in global Mapillary object.
12 lines
305 B
TypeScript
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};
|