UNPKG

@yandex/ymaps3-types

Version:

Types for ymaps3 maps library

12 lines (11 loc) 688 B
import type TReact from 'react'; import type { CustomReactify, Prettify } from '../reactify'; import type { GenericEntity } from '../../imperative/Entities'; import type { YMapControl as YMapControlI, YMapControlProps } from "../../imperative/YMapControl/index"; type ComputedYMapControlProps = YMapControlProps & { controlElement: HTMLElement; }; type YMapControlContainerProps = TReact.PropsWithChildren<YMapControlProps>; type YMapControlR = TReact.ForwardRefExoticComponent<Prettify<YMapControlContainerProps & React.RefAttributes<GenericEntity<ComputedYMapControlProps>>>>; export declare const YMapControlReactifyOverride: CustomReactify<YMapControlI, YMapControlR>; export {};