File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ declare namespace FastImage {
16
16
type center = 'center'
17
17
}
18
18
19
- namespace cache {
19
+ namespace cacheControl {
20
20
type cacheOnly = 'cacheOnly'
21
21
type immutable = 'immutable'
22
22
type web = 'web'
@@ -34,9 +34,9 @@ declare namespace FastImage {
34
34
FastImage . resizeMode . center
35
35
36
36
export type Cache =
37
- FastImage . cache . cacheOnly |
38
- FastImage . cache . immutable |
39
- FastImage . cache . web
37
+ FastImage . cacheControl . cacheOnly |
38
+ FastImage . cacheControl . immutable |
39
+ FastImage . cacheControl . web
40
40
}
41
41
42
42
export type FastImageSource = {
Original file line number Diff line number Diff line change 1
1
// @flow
2
+
2
3
import type { ViewProps } from 'react-native/Libraries/Components/View/ViewPropTypes'
3
4
import type { SyntheticEvent } from 'react-native/Libraries/Types/CoreEventTypes'
4
5
You can’t perform that action at this time.
0 commit comments