UNPKG

@yandex/ymaps3-types

Version:

Types for ymaps3 maps library

12 lines (11 loc) 703 B
import type TReactNamespace from "react"; import type { CustomReactify, Prettify } from "../reactify"; import type { GenericEntity } from "../../imperative/Entities"; import type { YMapMarker as YMapMarkerI, YMapMarkerProps } from "../../imperative/YMapMarker"; type ComputedYMapMarkerProps = YMapMarkerProps & { markerElement?: HTMLElement; }; type YMapMarkerContainerProps = TReactNamespace.PropsWithChildren<ComputedYMapMarkerProps>; type YMapMarkerR = TReactNamespace.ForwardRefExoticComponent<Prettify<YMapMarkerContainerProps & React.RefAttributes<GenericEntity<ComputedYMapMarkerProps>>>>; export declare const YMapMarkerReactifyOverride: CustomReactify<YMapMarkerI, YMapMarkerR>; export {};