UNPKG

react-native-svg

Version:
17 lines (16 loc) 420 B
/// <reference types="react" /> import Shape from './Shape'; import { NumberProp } from '../lib/extract/types'; export default class Polyline extends Shape<{ points?: number[]; }> { static displayName: string; static defaultProps: { points: string; }; setNativeProps: (props: Object & { points?: string | NumberProp[]; d?: string; }) => void; render(): JSX.Element; }