├── .gitignore ├── LICENSE ├── README.md └── ymaps ├── Balloon.d.ts ├── Circle.d.ts ├── ClusterPlacemark.d.ts ├── Clusterer.d.ts ├── Collection.d.ts ├── DomEvent.d.ts ├── Error.d.ts ├── Event.d.ts ├── GeoObject.d.ts ├── GeoObjectCollection.d.ts ├── GeoQueryResult.d.ts ├── Hint.d.ts ├── Hotspot.d.ts ├── Layer.d.ts ├── LayerCollection.d.ts ├── LoadingObjectManager.d.ts ├── Map.d.ts ├── MapEvent.d.ts ├── MapType.d.ts ├── Monitor.d.ts ├── ObjectManager.d.ts ├── Placemark.d.ts ├── Polygon.d.ts ├── Polyline.d.ts ├── Popup.d.ts ├── Rectangle.d.ts ├── RemoteObjectManager.d.ts ├── SuggestView.d.ts ├── Template.d.ts ├── behavior ├── DblClickZoom.d.ts ├── Drag.d.ts ├── LeftMouseButtonMagnifier.d.ts ├── MultiTouch.d.ts ├── RightMouseButtonMagnifier.d.ts ├── RouteEditor.d.ts ├── Ruler.d.ts ├── ScrollZoom.d.ts └── storage.d.ts ├── clusterer ├── Balloon.d.ts └── Hint.d.ts ├── collection └── Item.d.ts ├── control ├── Button.d.ts ├── FullscreenControl.d.ts ├── GeolocationControl.d.ts ├── ListBox.d.ts ├── ListBoxItem.d.ts ├── Manager.d.ts ├── RouteEditor.d.ts ├── RulerControl.d.ts ├── SearchControl.d.ts ├── TrafficControl.d.ts ├── TypeSelector.d.ts ├── ZoomControl.d.ts └── storage.d.ts ├── coordSystem ├── cartesian.d.ts └── geo.d.ts ├── data └── Manager.d.ts ├── domEvent ├── MultiPointer.d.ts ├── MultiTouch.d.ts ├── Pointer.d.ts ├── Touch.d.ts └── manager.d.ts ├── error ├── AccessError.d.ts ├── ClientError.d.ts ├── DataProcessingError.d.ts ├── DeprecationWarning.d.ts ├── EmptyResultReject.d.ts ├── ExternalError.d.ts ├── FeatureRemovedError.d.ts ├── InputError.d.ts ├── NotSupportedError.d.ts ├── OperationCanceledReject.d.ts ├── OperationUnallowedReject.d.ts ├── OperationUnawailableReject.d.ts ├── OveruseWarning.d.ts ├── Reject.d.ts ├── RequestError.d.ts ├── StateError.d.ts ├── StorageItemAccessError.d.ts └── Warning.d.ts ├── event ├── Group.d.ts ├── Manager.d.ts └── Mapper.d.ts ├── formatter.d.ts ├── geoObject ├── Balloon.d.ts ├── Hint.d.ts ├── Sequence.d.ts └── addon │ ├── balloon.d.ts │ ├── editor.d.ts │ └── hint.d.ts ├── geoQuery.d.ts ├── geoXml └── load.d.ts ├── geocode.d.ts ├── geolocation.d.ts ├── geometry ├── Circle.d.ts ├── LineString.d.ts ├── LineString │ ├── fromEncodedCoordinates.d.ts │ └── toEncodedCoordinates.d.ts ├── Point.d.ts ├── Polygon.d.ts ├── Polygon │ ├── fromEncodedCoordinates.d.ts │ └── toEncodedCoordinates.d.ts ├── Rectangle.d.ts ├── base │ ├── Circle.d.ts │ ├── LineString.d.ts │ ├── LineString │ │ ├── fromEncodedCoordinates.d.ts │ │ └── toEncodedCoordinates.d.ts │ ├── LinearRing.d.ts │ ├── LinearRing │ │ ├── fromEncodedCoordinates.d.ts │ │ └── toEncodedCoordinates.d.ts │ ├── Point.d.ts │ ├── Polygon.d.ts │ ├── Polygon │ │ ├── fromEncodedCoordinates.d.ts │ │ └── toEncodedCoordinates.d.ts │ └── Rectangle.d.ts ├── json │ ├── Point.d.ts │ ├── circle.d.ts │ ├── lineString.d.ts │ ├── polygon.d.ts │ └── rectangle.d.ts └── pixel │ ├── Circle.d.ts │ ├── LineString.d.ts │ ├── MultiPolygon.d.ts │ ├── Point.d.ts │ ├── Polygon.d.ts │ └── Rectangle.d.ts ├── geometryEditor ├── LineString.d.ts ├── Point.d.ts ├── Polygon.d.ts ├── model │ ├── ChildLineString.d.ts │ ├── ChildLinearRing.d.ts │ ├── ChildVertex.d.ts │ ├── Edge.d.ts │ ├── EdgeGeometry.d.ts │ ├── RootLineString.d.ts │ └── RootPolygon.d.ts └── view │ ├── Edge.d.ts │ ├── MultiPath.d.ts │ ├── Path.d.ts │ └── Vertex.d.ts ├── getZoomRange.d.ts ├── graphics └── style │ ├── color.d.ts │ └── stroke.d.ts ├── hotspot ├── Layer.d.ts ├── ObjectSource.d.ts └── layer │ ├── Balloon.d.ts │ ├── Hint.d.ts │ └── Object.d.ts ├── interactivityModel └── storage.d.ts ├── interfaces ├── IBalloon.d.ts ├── IBalloonLayout.d.ts ├── IBalloonManager.d.ts ├── IBalloonOwner.d.ts ├── IBalloonSharingManager.d.ts ├── IBaseCircleGeometry.d.ts ├── IBaseGeometry.d.ts ├── IBaseLineStringGeometry.d.ts ├── IBaseLinearRingGeometry.d.ts ├── IBasePointGeometry.d.ts ├── IBasePolygonGeometry.d.ts ├── IBaseRectangleGeometry.d.ts ├── IBehavior.d.ts ├── ICanvasTile.d.ts ├── IChild.d.ts ├── IChildOnMap.d.ts ├── ICircleGeometry.d.ts ├── ICircleGeometryAccess.d.ts ├── ICollection.d.ts ├── IContainerPane.d.ts ├── IControl.d.ts ├── IControlParent.d.ts ├── ICoordSystem.d.ts ├── ICopyrightsAccessor.d.ts ├── ICopyrightsProvider.d.ts ├── ICustomizable.d.ts ├── IDataManager.d.ts ├── IDomEvent.d.ts ├── IDomEventEmitter.d.ts ├── IDomTile.d.ts ├── IEvent.d.ts ├── IEventController.d.ts ├── IEventEmitter.d.ts ├── IEventGroup.d.ts ├── IEventManager.d.ts ├── IEventPane.d.ts ├── IEventTrigger.d.ts ├── IEventWorkflowController.d.ts ├── IExpandableControlLayout.d.ts ├── IFreezable.d.ts ├── IGeoObject.d.ts ├── IGeoObjectCollection.d.ts ├── IGeoObjectPopupData.d.ts ├── IGeoObjectSequence.d.ts ├── IGeocodeProvider.d.ts ├── IGeometry.d.ts ├── IGeometryEditor.d.ts ├── IGeometryEditorChildModel.d.ts ├── IGeometryEditorModel.d.ts ├── IGeometryEditorRootModel.d.ts ├── IGeometryJson.d.ts ├── IGroupControlLayout.d.ts ├── IHint.d.ts ├── IHintManager.d.ts ├── IHintOwner.d.ts ├── IHintSharingManager.d.ts ├── IHotspot.d.ts ├── IHotspotContainer.d.ts ├── IHotspotLayerObject.d.ts ├── IHotspotObjectSource.d.ts ├── IHotspotShape.d.ts ├── IIterator.d.ts ├── ILayer.d.ts ├── ILayout.d.ts ├── ILineStringGeometry.d.ts ├── ILineStringGeometryAccess.d.ts ├── ILinearRingGeometryAccess.d.ts ├── IMapAction.d.ts ├── IMapObjectCollection.d.ts ├── IMapState.d.ts ├── IMultiRouteModelJson.d.ts ├── IMultiRouteParams.d.ts ├── IMultiRouteReferencePoint.d.ts ├── IMultiTouchEvent.d.ts ├── IOptionManager.d.ts ├── IOverlay.d.ts ├── IPane.d.ts ├── IParentOnMap.d.ts ├── IPixelCircleGeometry.d.ts ├── IPixelGeometry.d.ts ├── IPixelLineStringGeometry.d.ts ├── IPixelMultiPolygonGeometry.d.ts ├── IPixelPointGeometry.d.ts ├── IPixelPolygonGeometry.d.ts ├── IPixelRectangleGeometry.d.ts ├── IPointGeometry.d.ts ├── IPointGeometryAccess.d.ts ├── IPolygonGeometry.d.ts ├── IPolygonGeometryAccess.d.ts ├── IPopup.d.ts ├── IPopupManager.d.ts ├── IPositioningContext.d.ts ├── IProjection.d.ts ├── IPromiseProvider.d.ts ├── IRatioMap.d.ts ├── IRectangleGeometry.d.ts ├── IRectangleGeometryAccess.d.ts ├── ISearchControlLayout.d.ts ├── ISearchProvider.d.ts ├── ISelectableControl.d.ts ├── ISelectableControlLayout.d.ts ├── IShape.d.ts ├── ISuggestProvider.d.ts ├── ISuggestViewLayout.d.ts ├── ITrafficControlLayout.d.ts ├── ITrafficProvider.d.ts └── IZoomControlLayout.d.ts ├── layer ├── storage.d.ts ├── tile │ ├── CanvasTile.d.ts │ └── DomTile.d.ts └── tileContainer │ ├── CanvasContainer.d.ts │ └── DomContainer.d.ts ├── layout ├── Image.d.ts ├── ImageWithContent.d.ts ├── storage.d.ts └── templateBased │ └── Base.d.ts ├── map ├── Balloon.d.ts ├── Container.d.ts ├── Converter.d.ts ├── Copyrights.d.ts ├── GeoObjects.d.ts ├── Hint.d.ts ├── ZoomRange.d.ts ├── action │ ├── Continuous.d.ts │ ├── Manager.d.ts │ └── Single.d.ts ├── addon │ ├── balloon.d.ts │ └── hint.d.ts ├── behavior │ └── Manager.d.ts ├── layer │ └── Manager.d.ts └── pane │ └── Manager.d.ts ├── mapType └── storage.d.ts ├── meta.d.ts ├── modules.d.ts ├── multiRouter ├── Editor.d.ts ├── EditorAddon.d.ts ├── MultiRoute.d.ts ├── MultiRouteModel.d.ts ├── ViaPoint.d.ts ├── ViaPointModel.d.ts ├── WayPoint.d.ts ├── WayPointModel.d.ts ├── driving │ ├── Path.d.ts │ ├── PathModel.d.ts │ ├── Route.d.ts │ ├── RouteModel.d.ts │ ├── Segment.d.ts │ └── SegmentModel.d.ts └── masstransit │ ├── Path.d.ts │ ├── PathModel.d.ts │ ├── Route.d.ts │ ├── RouteModel.d.ts │ ├── StopModel.d.ts │ ├── TransferSegment.d.ts │ ├── TransferSegmentModel.d.ts │ ├── TransportProperties.d.ts │ ├── TransportSegment.d.ts │ ├── TransportSegmentModel.d.ts │ ├── WalkSegment.d.ts │ └── WalkSegmentModel.d.ts ├── objectManager ├── Balloon.d.ts ├── ClusterCollection.d.ts ├── Hint.d.ts ├── ObjectCollection.d.ts └── OverlayCollection.d.ts ├── option ├── Manager.d.ts └── presetStorage.d.ts ├── overlay ├── Circle.d.ts ├── Pin.d.ts ├── Placemark.d.ts ├── Polygon.d.ts ├── Polyline.d.ts ├── Rectangle.d.ts ├── hotspot │ ├── Base.d.ts │ ├── Circle.d.ts │ ├── Placemark.d.ts │ ├── Polygon.d.ts │ ├── Polyline.d.ts │ └── Rectangle.d.ts ├── html │ ├── Balloon.d.ts │ ├── Hint.d.ts │ ├── Placemark.d.ts │ └── Rectangle.d.ts └── storage.d.ts ├── pane ├── EventsPane.d.ts ├── MovablePane.d.ts └── StaticPane.d.ts ├── projection ├── Cartesian.d.ts ├── sphericalMercator.d.ts └── wgs84Mercator.d.ts ├── ready.d.ts ├── regions └── load.d.ts ├── route.d.ts ├── router ├── Editor.d.ts ├── Path.d.ts ├── Route.d.ts ├── Segment.d.ts ├── ViaPoint.d.ts └── WayPoint.d.ts ├── search.d.ts ├── shape ├── Circle.d.ts ├── LineString.d.ts ├── MultiPolygon.d.ts ├── Polygon.d.ts ├── Rectangle.d.ts └── storage.d.ts ├── suggest.d.ts ├── template └── filtersStorage.d.ts ├── templateLayoutFactory.d.ts ├── traffic └── provider │ ├── Actual.d.ts │ ├── Archive.d.ts │ ├── Forecast.d.ts │ └── storage.d.ts ├── types.d.ts ├── util ├── AsyncStorage.d.ts ├── Dragger.d.ts ├── Storage.d.ts ├── augment.d.ts ├── bind.d.ts ├── bounds.d.ts ├── cursor │ ├── Accessor.d.ts │ └── Manager.d.ts ├── defineClass.d.ts ├── extend.d.ts ├── hd.d.ts ├── math │ ├── areEqual.d.ts │ ├── cycleRestrict.d.ts │ └── restrict.d.ts ├── pixelBounds.d.ts └── requireCenterAndZoom.d.ts └── vow ├── Deferred.d.ts └── Promise.d.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/README.md -------------------------------------------------------------------------------- /ymaps/Balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Balloon.d.ts -------------------------------------------------------------------------------- /ymaps/Circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Circle.d.ts -------------------------------------------------------------------------------- /ymaps/ClusterPlacemark.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/ClusterPlacemark.d.ts -------------------------------------------------------------------------------- /ymaps/Clusterer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Clusterer.d.ts -------------------------------------------------------------------------------- /ymaps/Collection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Collection.d.ts -------------------------------------------------------------------------------- /ymaps/DomEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/DomEvent.d.ts -------------------------------------------------------------------------------- /ymaps/Error.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Error.d.ts -------------------------------------------------------------------------------- /ymaps/Event.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Event.d.ts -------------------------------------------------------------------------------- /ymaps/GeoObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/GeoObject.d.ts -------------------------------------------------------------------------------- /ymaps/GeoObjectCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/GeoObjectCollection.d.ts -------------------------------------------------------------------------------- /ymaps/GeoQueryResult.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/GeoQueryResult.d.ts -------------------------------------------------------------------------------- /ymaps/Hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Hint.d.ts -------------------------------------------------------------------------------- /ymaps/Hotspot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Hotspot.d.ts -------------------------------------------------------------------------------- /ymaps/Layer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Layer.d.ts -------------------------------------------------------------------------------- /ymaps/LayerCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/LayerCollection.d.ts -------------------------------------------------------------------------------- /ymaps/LoadingObjectManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/LoadingObjectManager.d.ts -------------------------------------------------------------------------------- /ymaps/Map.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Map.d.ts -------------------------------------------------------------------------------- /ymaps/MapEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/MapEvent.d.ts -------------------------------------------------------------------------------- /ymaps/MapType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/MapType.d.ts -------------------------------------------------------------------------------- /ymaps/Monitor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Monitor.d.ts -------------------------------------------------------------------------------- /ymaps/ObjectManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/ObjectManager.d.ts -------------------------------------------------------------------------------- /ymaps/Placemark.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Placemark.d.ts -------------------------------------------------------------------------------- /ymaps/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Polygon.d.ts -------------------------------------------------------------------------------- /ymaps/Polyline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Polyline.d.ts -------------------------------------------------------------------------------- /ymaps/Popup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Popup.d.ts -------------------------------------------------------------------------------- /ymaps/Rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/RemoteObjectManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/RemoteObjectManager.d.ts -------------------------------------------------------------------------------- /ymaps/SuggestView.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/SuggestView.d.ts -------------------------------------------------------------------------------- /ymaps/Template.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/Template.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/DblClickZoom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/DblClickZoom.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/Drag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/Drag.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/LeftMouseButtonMagnifier.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/LeftMouseButtonMagnifier.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/MultiTouch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/MultiTouch.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/RightMouseButtonMagnifier.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/RightMouseButtonMagnifier.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/RouteEditor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/RouteEditor.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/Ruler.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/Ruler.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/ScrollZoom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/ScrollZoom.d.ts -------------------------------------------------------------------------------- /ymaps/behavior/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/behavior/storage.d.ts -------------------------------------------------------------------------------- /ymaps/clusterer/Balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/clusterer/Balloon.d.ts -------------------------------------------------------------------------------- /ymaps/clusterer/Hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/clusterer/Hint.d.ts -------------------------------------------------------------------------------- /ymaps/collection/Item.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/collection/Item.d.ts -------------------------------------------------------------------------------- /ymaps/control/Button.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/Button.d.ts -------------------------------------------------------------------------------- /ymaps/control/FullscreenControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/FullscreenControl.d.ts -------------------------------------------------------------------------------- /ymaps/control/GeolocationControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/GeolocationControl.d.ts -------------------------------------------------------------------------------- /ymaps/control/ListBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/ListBox.d.ts -------------------------------------------------------------------------------- /ymaps/control/ListBoxItem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/ListBoxItem.d.ts -------------------------------------------------------------------------------- /ymaps/control/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/control/RouteEditor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/RouteEditor.d.ts -------------------------------------------------------------------------------- /ymaps/control/RulerControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/RulerControl.d.ts -------------------------------------------------------------------------------- /ymaps/control/SearchControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/SearchControl.d.ts -------------------------------------------------------------------------------- /ymaps/control/TrafficControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/TrafficControl.d.ts -------------------------------------------------------------------------------- /ymaps/control/TypeSelector.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/TypeSelector.d.ts -------------------------------------------------------------------------------- /ymaps/control/ZoomControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/ZoomControl.d.ts -------------------------------------------------------------------------------- /ymaps/control/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/control/storage.d.ts -------------------------------------------------------------------------------- /ymaps/coordSystem/cartesian.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/coordSystem/cartesian.d.ts -------------------------------------------------------------------------------- /ymaps/coordSystem/geo.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/coordSystem/geo.d.ts -------------------------------------------------------------------------------- /ymaps/data/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/data/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/domEvent/MultiPointer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/domEvent/MultiPointer.d.ts -------------------------------------------------------------------------------- /ymaps/domEvent/MultiTouch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/domEvent/MultiTouch.d.ts -------------------------------------------------------------------------------- /ymaps/domEvent/Pointer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/domEvent/Pointer.d.ts -------------------------------------------------------------------------------- /ymaps/domEvent/Touch.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/domEvent/Touch.d.ts -------------------------------------------------------------------------------- /ymaps/domEvent/manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/domEvent/manager.d.ts -------------------------------------------------------------------------------- /ymaps/error/AccessError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/AccessError.d.ts -------------------------------------------------------------------------------- /ymaps/error/ClientError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/ClientError.d.ts -------------------------------------------------------------------------------- /ymaps/error/DataProcessingError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/DataProcessingError.d.ts -------------------------------------------------------------------------------- /ymaps/error/DeprecationWarning.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/DeprecationWarning.d.ts -------------------------------------------------------------------------------- /ymaps/error/EmptyResultReject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/EmptyResultReject.d.ts -------------------------------------------------------------------------------- /ymaps/error/ExternalError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/ExternalError.d.ts -------------------------------------------------------------------------------- /ymaps/error/FeatureRemovedError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/FeatureRemovedError.d.ts -------------------------------------------------------------------------------- /ymaps/error/InputError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/InputError.d.ts -------------------------------------------------------------------------------- /ymaps/error/NotSupportedError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/NotSupportedError.d.ts -------------------------------------------------------------------------------- /ymaps/error/OperationCanceledReject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/OperationCanceledReject.d.ts -------------------------------------------------------------------------------- /ymaps/error/OperationUnallowedReject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/OperationUnallowedReject.d.ts -------------------------------------------------------------------------------- /ymaps/error/OperationUnawailableReject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/OperationUnawailableReject.d.ts -------------------------------------------------------------------------------- /ymaps/error/OveruseWarning.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/OveruseWarning.d.ts -------------------------------------------------------------------------------- /ymaps/error/Reject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/Reject.d.ts -------------------------------------------------------------------------------- /ymaps/error/RequestError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/RequestError.d.ts -------------------------------------------------------------------------------- /ymaps/error/StateError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/StateError.d.ts -------------------------------------------------------------------------------- /ymaps/error/StorageItemAccessError.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/StorageItemAccessError.d.ts -------------------------------------------------------------------------------- /ymaps/error/Warning.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/error/Warning.d.ts -------------------------------------------------------------------------------- /ymaps/event/Group.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/event/Group.d.ts -------------------------------------------------------------------------------- /ymaps/event/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/event/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/event/Mapper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/event/Mapper.d.ts -------------------------------------------------------------------------------- /ymaps/formatter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/formatter.d.ts -------------------------------------------------------------------------------- /ymaps/geoObject/Balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geoObject/Balloon.d.ts -------------------------------------------------------------------------------- /ymaps/geoObject/Hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geoObject/Hint.d.ts -------------------------------------------------------------------------------- /ymaps/geoObject/Sequence.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geoObject/Sequence.d.ts -------------------------------------------------------------------------------- /ymaps/geoObject/addon/balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geoObject/addon/balloon.d.ts -------------------------------------------------------------------------------- /ymaps/geoObject/addon/editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geoObject/addon/editor.d.ts -------------------------------------------------------------------------------- /ymaps/geoObject/addon/hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geoObject/addon/hint.d.ts -------------------------------------------------------------------------------- /ymaps/geoQuery.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geoQuery.d.ts -------------------------------------------------------------------------------- /ymaps/geoXml/load.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geoXml/load.d.ts -------------------------------------------------------------------------------- /ymaps/geocode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geocode.d.ts -------------------------------------------------------------------------------- /ymaps/geolocation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geolocation.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/Circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/Circle.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/LineString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/LineString.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/LineString/fromEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/LineString/fromEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/LineString/toEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/LineString/toEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/Point.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/Point.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/Polygon.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/Polygon/fromEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/Polygon/fromEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/Polygon/toEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/Polygon/toEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/Rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/Rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/Circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/Circle.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/LineString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/LineString.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/LineString/fromEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/LineString/fromEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/LineString/toEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/LineString/toEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/LinearRing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/LinearRing.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/LinearRing/fromEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/LinearRing/fromEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/LinearRing/toEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/LinearRing/toEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/Point.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/Point.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/Polygon.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/Polygon/fromEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/Polygon/fromEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/Polygon/toEncodedCoordinates.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/Polygon/toEncodedCoordinates.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/base/Rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/base/Rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/json/Point.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/json/Point.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/json/circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/json/circle.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/json/lineString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/json/lineString.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/json/polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/json/polygon.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/json/rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/json/rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/pixel/Circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/pixel/Circle.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/pixel/LineString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/pixel/LineString.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/pixel/MultiPolygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/pixel/MultiPolygon.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/pixel/Point.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/pixel/Point.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/pixel/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/pixel/Polygon.d.ts -------------------------------------------------------------------------------- /ymaps/geometry/pixel/Rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometry/pixel/Rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/LineString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/LineString.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/Point.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/Point.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/Polygon.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/model/ChildLineString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/model/ChildLineString.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/model/ChildLinearRing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/model/ChildLinearRing.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/model/ChildVertex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/model/ChildVertex.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/model/Edge.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/model/Edge.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/model/EdgeGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/model/EdgeGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/model/RootLineString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/model/RootLineString.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/model/RootPolygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/model/RootPolygon.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/view/Edge.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/view/Edge.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/view/MultiPath.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/view/MultiPath.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/view/Path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/view/Path.d.ts -------------------------------------------------------------------------------- /ymaps/geometryEditor/view/Vertex.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/geometryEditor/view/Vertex.d.ts -------------------------------------------------------------------------------- /ymaps/getZoomRange.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/getZoomRange.d.ts -------------------------------------------------------------------------------- /ymaps/graphics/style/color.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/graphics/style/color.d.ts -------------------------------------------------------------------------------- /ymaps/graphics/style/stroke.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/graphics/style/stroke.d.ts -------------------------------------------------------------------------------- /ymaps/hotspot/Layer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/hotspot/Layer.d.ts -------------------------------------------------------------------------------- /ymaps/hotspot/ObjectSource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/hotspot/ObjectSource.d.ts -------------------------------------------------------------------------------- /ymaps/hotspot/layer/Balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/hotspot/layer/Balloon.d.ts -------------------------------------------------------------------------------- /ymaps/hotspot/layer/Hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/hotspot/layer/Hint.d.ts -------------------------------------------------------------------------------- /ymaps/hotspot/layer/Object.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/hotspot/layer/Object.d.ts -------------------------------------------------------------------------------- /ymaps/interactivityModel/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interactivityModel/storage.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBalloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBalloon.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBalloonLayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBalloonLayout.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBalloonManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBalloonManager.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBalloonOwner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBalloonOwner.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBalloonSharingManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBalloonSharingManager.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBaseCircleGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBaseCircleGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBaseGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBaseGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBaseLineStringGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBaseLineStringGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBaseLinearRingGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBaseLinearRingGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBasePointGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBasePointGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBasePolygonGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBasePolygonGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBaseRectangleGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBaseRectangleGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IBehavior.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IBehavior.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ICanvasTile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ICanvasTile.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IChild.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IChild.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IChildOnMap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IChildOnMap.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ICircleGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ICircleGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ICircleGeometryAccess.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ICircleGeometryAccess.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ICollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ICollection.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IContainerPane.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IContainerPane.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IControl.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IControlParent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IControlParent.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ICoordSystem.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ICoordSystem.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ICopyrightsAccessor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ICopyrightsAccessor.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ICopyrightsProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ICopyrightsProvider.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ICustomizable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ICustomizable.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IDataManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IDataManager.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IDomEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IDomEvent.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IDomEventEmitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IDomEventEmitter.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IDomTile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IDomTile.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IEvent.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IEventController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IEventController.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IEventEmitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IEventEmitter.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IEventGroup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IEventGroup.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IEventManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IEventManager.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IEventPane.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IEventPane.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IEventTrigger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IEventTrigger.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IEventWorkflowController.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IEventWorkflowController.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IExpandableControlLayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IExpandableControlLayout.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IFreezable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IFreezable.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeoObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeoObject.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeoObjectCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeoObjectCollection.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeoObjectPopupData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeoObjectPopupData.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeoObjectSequence.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeoObjectSequence.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeocodeProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeocodeProvider.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeometryEditor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeometryEditor.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeometryEditorChildModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeometryEditorChildModel.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeometryEditorModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeometryEditorModel.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeometryEditorRootModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeometryEditorRootModel.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGeometryJson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGeometryJson.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IGroupControlLayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IGroupControlLayout.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHint.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHintManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHintManager.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHintOwner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHintOwner.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHintSharingManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHintSharingManager.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHotspot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHotspot.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHotspotContainer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHotspotContainer.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHotspotLayerObject.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHotspotLayerObject.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHotspotObjectSource.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHotspotObjectSource.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IHotspotShape.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IHotspotShape.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IIterator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IIterator.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ILayer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ILayer.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ILayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ILayout.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ILineStringGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ILineStringGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ILineStringGeometryAccess.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ILineStringGeometryAccess.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ILinearRingGeometryAccess.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ILinearRingGeometryAccess.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IMapAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IMapAction.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IMapObjectCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IMapObjectCollection.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IMapState.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IMapState.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IMultiRouteModelJson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IMultiRouteModelJson.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IMultiRouteParams.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IMultiRouteParams.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IMultiRouteReferencePoint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IMultiRouteReferencePoint.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IMultiTouchEvent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IMultiTouchEvent.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IOptionManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IOptionManager.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IOverlay.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IOverlay.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPane.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPane.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IParentOnMap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IParentOnMap.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPixelCircleGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPixelCircleGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPixelGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPixelGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPixelLineStringGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPixelLineStringGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPixelMultiPolygonGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPixelMultiPolygonGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPixelPointGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPixelPointGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPixelPolygonGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPixelPolygonGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPixelRectangleGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPixelRectangleGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPointGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPointGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPointGeometryAccess.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPointGeometryAccess.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPolygonGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPolygonGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPolygonGeometryAccess.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPolygonGeometryAccess.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPopup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPopup.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPopupManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPopupManager.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPositioningContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPositioningContext.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IProjection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IProjection.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IPromiseProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IPromiseProvider.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IRatioMap.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IRatioMap.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IRectangleGeometry.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IRectangleGeometry.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IRectangleGeometryAccess.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IRectangleGeometryAccess.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ISearchControlLayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ISearchControlLayout.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ISearchProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ISearchProvider.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ISelectableControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ISelectableControl.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ISelectableControlLayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ISelectableControlLayout.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IShape.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IShape.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ISuggestProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ISuggestProvider.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ISuggestViewLayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ISuggestViewLayout.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ITrafficControlLayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ITrafficControlLayout.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/ITrafficProvider.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/ITrafficProvider.d.ts -------------------------------------------------------------------------------- /ymaps/interfaces/IZoomControlLayout.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/interfaces/IZoomControlLayout.d.ts -------------------------------------------------------------------------------- /ymaps/layer/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layer/storage.d.ts -------------------------------------------------------------------------------- /ymaps/layer/tile/CanvasTile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layer/tile/CanvasTile.d.ts -------------------------------------------------------------------------------- /ymaps/layer/tile/DomTile.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layer/tile/DomTile.d.ts -------------------------------------------------------------------------------- /ymaps/layer/tileContainer/CanvasContainer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layer/tileContainer/CanvasContainer.d.ts -------------------------------------------------------------------------------- /ymaps/layer/tileContainer/DomContainer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layer/tileContainer/DomContainer.d.ts -------------------------------------------------------------------------------- /ymaps/layout/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layout/Image.d.ts -------------------------------------------------------------------------------- /ymaps/layout/ImageWithContent.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layout/ImageWithContent.d.ts -------------------------------------------------------------------------------- /ymaps/layout/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layout/storage.d.ts -------------------------------------------------------------------------------- /ymaps/layout/templateBased/Base.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/layout/templateBased/Base.d.ts -------------------------------------------------------------------------------- /ymaps/map/Balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/Balloon.d.ts -------------------------------------------------------------------------------- /ymaps/map/Container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/Container.d.ts -------------------------------------------------------------------------------- /ymaps/map/Converter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/Converter.d.ts -------------------------------------------------------------------------------- /ymaps/map/Copyrights.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/Copyrights.d.ts -------------------------------------------------------------------------------- /ymaps/map/GeoObjects.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/GeoObjects.d.ts -------------------------------------------------------------------------------- /ymaps/map/Hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/Hint.d.ts -------------------------------------------------------------------------------- /ymaps/map/ZoomRange.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/ZoomRange.d.ts -------------------------------------------------------------------------------- /ymaps/map/action/Continuous.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/action/Continuous.d.ts -------------------------------------------------------------------------------- /ymaps/map/action/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/action/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/map/action/Single.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/action/Single.d.ts -------------------------------------------------------------------------------- /ymaps/map/addon/balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/addon/balloon.d.ts -------------------------------------------------------------------------------- /ymaps/map/addon/hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/addon/hint.d.ts -------------------------------------------------------------------------------- /ymaps/map/behavior/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/behavior/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/map/layer/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/layer/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/map/pane/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/map/pane/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/mapType/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/mapType/storage.d.ts -------------------------------------------------------------------------------- /ymaps/meta.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/meta.d.ts -------------------------------------------------------------------------------- /ymaps/modules.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/modules.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/Editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/Editor.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/EditorAddon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/EditorAddon.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/MultiRoute.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/MultiRoute.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/MultiRouteModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/MultiRouteModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/ViaPoint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/ViaPoint.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/ViaPointModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/ViaPointModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/WayPoint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/WayPoint.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/WayPointModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/WayPointModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/driving/Path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/driving/Path.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/driving/PathModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/driving/PathModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/driving/Route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/driving/Route.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/driving/RouteModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/driving/RouteModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/driving/Segment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/driving/Segment.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/driving/SegmentModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/driving/SegmentModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/Path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/Path.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/PathModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/PathModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/Route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/Route.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/RouteModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/RouteModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/StopModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/StopModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/TransferSegment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/TransferSegment.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/TransferSegmentModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/TransferSegmentModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/TransportProperties.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/TransportProperties.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/TransportSegment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/TransportSegment.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/TransportSegmentModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/TransportSegmentModel.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/WalkSegment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/WalkSegment.d.ts -------------------------------------------------------------------------------- /ymaps/multiRouter/masstransit/WalkSegmentModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/multiRouter/masstransit/WalkSegmentModel.d.ts -------------------------------------------------------------------------------- /ymaps/objectManager/Balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/objectManager/Balloon.d.ts -------------------------------------------------------------------------------- /ymaps/objectManager/ClusterCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/objectManager/ClusterCollection.d.ts -------------------------------------------------------------------------------- /ymaps/objectManager/Hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/objectManager/Hint.d.ts -------------------------------------------------------------------------------- /ymaps/objectManager/ObjectCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/objectManager/ObjectCollection.d.ts -------------------------------------------------------------------------------- /ymaps/objectManager/OverlayCollection.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/objectManager/OverlayCollection.d.ts -------------------------------------------------------------------------------- /ymaps/option/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/option/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/option/presetStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/option/presetStorage.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/Circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/Circle.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/Pin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/Pin.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/Placemark.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/Placemark.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/Polygon.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/Polyline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/Polyline.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/Rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/Rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/hotspot/Base.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/hotspot/Base.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/hotspot/Circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/hotspot/Circle.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/hotspot/Placemark.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/hotspot/Placemark.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/hotspot/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/hotspot/Polygon.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/hotspot/Polyline.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/hotspot/Polyline.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/hotspot/Rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/hotspot/Rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/html/Balloon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/html/Balloon.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/html/Hint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/html/Hint.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/html/Placemark.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/html/Placemark.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/html/Rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/html/Rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/overlay/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/overlay/storage.d.ts -------------------------------------------------------------------------------- /ymaps/pane/EventsPane.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/pane/EventsPane.d.ts -------------------------------------------------------------------------------- /ymaps/pane/MovablePane.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/pane/MovablePane.d.ts -------------------------------------------------------------------------------- /ymaps/pane/StaticPane.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/pane/StaticPane.d.ts -------------------------------------------------------------------------------- /ymaps/projection/Cartesian.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/projection/Cartesian.d.ts -------------------------------------------------------------------------------- /ymaps/projection/sphericalMercator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/projection/sphericalMercator.d.ts -------------------------------------------------------------------------------- /ymaps/projection/wgs84Mercator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/projection/wgs84Mercator.d.ts -------------------------------------------------------------------------------- /ymaps/ready.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/ready.d.ts -------------------------------------------------------------------------------- /ymaps/regions/load.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/regions/load.d.ts -------------------------------------------------------------------------------- /ymaps/route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/route.d.ts -------------------------------------------------------------------------------- /ymaps/router/Editor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/router/Editor.d.ts -------------------------------------------------------------------------------- /ymaps/router/Path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/router/Path.d.ts -------------------------------------------------------------------------------- /ymaps/router/Route.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/router/Route.d.ts -------------------------------------------------------------------------------- /ymaps/router/Segment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/router/Segment.d.ts -------------------------------------------------------------------------------- /ymaps/router/ViaPoint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/router/ViaPoint.d.ts -------------------------------------------------------------------------------- /ymaps/router/WayPoint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/router/WayPoint.d.ts -------------------------------------------------------------------------------- /ymaps/search.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/search.d.ts -------------------------------------------------------------------------------- /ymaps/shape/Circle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/shape/Circle.d.ts -------------------------------------------------------------------------------- /ymaps/shape/LineString.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/shape/LineString.d.ts -------------------------------------------------------------------------------- /ymaps/shape/MultiPolygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/shape/MultiPolygon.d.ts -------------------------------------------------------------------------------- /ymaps/shape/Polygon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/shape/Polygon.d.ts -------------------------------------------------------------------------------- /ymaps/shape/Rectangle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/shape/Rectangle.d.ts -------------------------------------------------------------------------------- /ymaps/shape/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/shape/storage.d.ts -------------------------------------------------------------------------------- /ymaps/suggest.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/suggest.d.ts -------------------------------------------------------------------------------- /ymaps/template/filtersStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/template/filtersStorage.d.ts -------------------------------------------------------------------------------- /ymaps/templateLayoutFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/templateLayoutFactory.d.ts -------------------------------------------------------------------------------- /ymaps/traffic/provider/Actual.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/traffic/provider/Actual.d.ts -------------------------------------------------------------------------------- /ymaps/traffic/provider/Archive.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/traffic/provider/Archive.d.ts -------------------------------------------------------------------------------- /ymaps/traffic/provider/Forecast.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/traffic/provider/Forecast.d.ts -------------------------------------------------------------------------------- /ymaps/traffic/provider/storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/traffic/provider/storage.d.ts -------------------------------------------------------------------------------- /ymaps/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/types.d.ts -------------------------------------------------------------------------------- /ymaps/util/AsyncStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/AsyncStorage.d.ts -------------------------------------------------------------------------------- /ymaps/util/Dragger.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/Dragger.d.ts -------------------------------------------------------------------------------- /ymaps/util/Storage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/Storage.d.ts -------------------------------------------------------------------------------- /ymaps/util/augment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/augment.d.ts -------------------------------------------------------------------------------- /ymaps/util/bind.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/bind.d.ts -------------------------------------------------------------------------------- /ymaps/util/bounds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/bounds.d.ts -------------------------------------------------------------------------------- /ymaps/util/cursor/Accessor.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/cursor/Accessor.d.ts -------------------------------------------------------------------------------- /ymaps/util/cursor/Manager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/cursor/Manager.d.ts -------------------------------------------------------------------------------- /ymaps/util/defineClass.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/defineClass.d.ts -------------------------------------------------------------------------------- /ymaps/util/extend.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/extend.d.ts -------------------------------------------------------------------------------- /ymaps/util/hd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/hd.d.ts -------------------------------------------------------------------------------- /ymaps/util/math/areEqual.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/math/areEqual.d.ts -------------------------------------------------------------------------------- /ymaps/util/math/cycleRestrict.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/math/cycleRestrict.d.ts -------------------------------------------------------------------------------- /ymaps/util/math/restrict.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/math/restrict.d.ts -------------------------------------------------------------------------------- /ymaps/util/pixelBounds.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/pixelBounds.d.ts -------------------------------------------------------------------------------- /ymaps/util/requireCenterAndZoom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/util/requireCenterAndZoom.d.ts -------------------------------------------------------------------------------- /ymaps/vow/Deferred.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/vow/Deferred.d.ts -------------------------------------------------------------------------------- /ymaps/vow/Promise.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romka-chev/typed-ymaps-api/HEAD/ymaps/vow/Promise.d.ts --------------------------------------------------------------------------------