File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import * as React from 'react'
7
7
import {
8
- ScrollViewProperties ,
9
- FlatListProperties ,
10
- SectionListProperties
8
+ ScrollViewProps ,
9
+ FlatListProps ,
10
+ SectionListProps
11
11
} from 'react-native'
12
12
13
13
interface KeyboardAwareProps {
@@ -145,13 +145,13 @@ interface KeyboardAwareProps {
145
145
146
146
interface KeyboardAwareScrollViewProps
147
147
extends KeyboardAwareProps ,
148
- ScrollViewProperties { }
148
+ ScrollViewProps { }
149
149
interface KeyboardAwareFlatListProps < ItemT >
150
150
extends KeyboardAwareProps ,
151
- FlatListProperties < ItemT > { }
151
+ FlatListProps < ItemT > { }
152
152
interface KeyboardAwareSectionListProps < ItemT >
153
153
extends KeyboardAwareProps ,
154
- SectionListProperties < ItemT > { }
154
+ SectionListProps < ItemT > { }
155
155
156
156
interface KeyboardAwareState {
157
157
keyboardSpace : number
You can’t perform that action at this time.
0 commit comments