Skip to content

Commit

Permalink
Update index.d.ts (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Petretti authored and Álvaro Medina Ballester committed Aug 14, 2019
1 parent 2e8094c commit 36ad2ab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

import * as React from 'react'
import {
ScrollViewProperties,
FlatListProperties,
SectionListProperties
ScrollViewProps,
FlatListProps,
SectionListProps
} from 'react-native'

interface KeyboardAwareProps {
Expand Down Expand Up @@ -145,13 +145,13 @@ interface KeyboardAwareProps {

interface KeyboardAwareScrollViewProps
extends KeyboardAwareProps,
ScrollViewProperties {}
ScrollViewProps {}
interface KeyboardAwareFlatListProps<ItemT>
extends KeyboardAwareProps,
FlatListProperties<ItemT> {}
FlatListProps<ItemT> {}
interface KeyboardAwareSectionListProps<ItemT>
extends KeyboardAwareProps,
SectionListProperties<ItemT> {}
SectionListProps<ItemT> {}

interface KeyboardAwareState {
keyboardSpace: number
Expand Down

0 comments on commit 36ad2ab

Please sign in to comment.