Browse Source

export DatePickerProps

master
Vinh Le 5 years ago
committed by GitHub
parent
commit
d88f6ae67d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      index.d.ts

+ 2
- 2
index.d.ts View File

@ -1,7 +1,7 @@
import { Component } from 'react' import { Component } from 'react'
import { ViewProps } from 'react-native' import { ViewProps } from 'react-native'
interface Props extends ViewProps {
export interface DatePickerProps extends ViewProps {
/** /**
* The currently selected date. * The currently selected date.
*/ */
@ -65,4 +65,4 @@ interface Props extends ViewProps {
textColor?: string textColor?: string
} }
export default class DatePicker extends Component<Props> {}
export default class DatePicker extends Component<DatePickerProps> {}

Loading…
Cancel
Save