// Type definitions for react-native-dash v0.0.9 // Project: react-native-dash // Definitions by: alex-blair import React from 'react'; import { ViewStyle, StyleProp } from 'react-native'; export interface DashProps { dashGap: number; dashLength: number; dashThickness: number; style?: StyleProp; dashColor?: string; dashStyle?: StyleProp; } export default class Dash extends React.Component {}