react-native-yamap-ultraligth
Version:
Yandex.MapKit and Yandex.Geocoder for react-native
19 lines • 519 B
TypeScript
import React from 'react';
import { Point } from '../interfaces';
export interface PolylineProps {
strokeColor?: string;
outlineColor?: string;
strokeWidth?: number;
outlineWidth?: number;
dashLength?: number;
dashOffset?: number;
gapLength?: number;
zIndex?: number;
onPress?: () => void;
points: Point[];
children?: undefined;
}
export declare class Polyline extends React.Component<PolylineProps> {
render(): React.JSX.Element;
}
//# sourceMappingURL=Polyline.d.ts.map