mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-12 16:52:50 +00:00
40 lines
839 B
JavaScript
40 lines
839 B
JavaScript
export { osmChangeset } from './changeset';
|
|
export { osmEntity } from './entity';
|
|
export { osmNode } from './node';
|
|
export { osmNote } from './note';
|
|
export { osmRelation } from './relation';
|
|
export { osmWay } from './way';
|
|
export { QAItem } from './qa_item';
|
|
|
|
export {
|
|
osmIntersection,
|
|
osmTurn,
|
|
osmInferRestriction
|
|
} from './intersection';
|
|
|
|
export {
|
|
osmLanes
|
|
} from './lanes';
|
|
|
|
export {
|
|
osmJoinWays
|
|
} from './multipolygon';
|
|
|
|
export {
|
|
osmAreaKeys,
|
|
osmSetAreaKeys,
|
|
osmTagSuggestingArea,
|
|
osmPointTags,
|
|
osmSetPointTags,
|
|
osmVertexTags,
|
|
osmSetVertexTags,
|
|
osmNodeGeometriesForTags,
|
|
osmPavedTags,
|
|
osmIsInterestingTag,
|
|
osmLifecyclePrefixes,
|
|
osmRemoveLifecyclePrefix,
|
|
osmRoutableHighwayTagValues,
|
|
osmFlowingWaterwayTagValues,
|
|
osmRailwayTrackTagValues
|
|
} from './tags';
|