Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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