We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd5300 commit e33664fCopy full SHA for e33664f
src/index.tsx
@@ -14,7 +14,7 @@ import {
14
15
const FastImageViewNativeModule = NativeModules.FastImageView
16
17
-type ResizeMode = 'contain' | 'cover' | 'stretch' | 'center'
+export type ResizeMode = 'contain' | 'cover' | 'stretch' | 'center'
18
19
const resizeMode = {
20
contain: 'contain',
@@ -23,7 +23,7 @@ const resizeMode = {
23
center: 'center',
24
} as const
25
26
-type Priority = 'low' | 'normal' | 'high'
+export type Priority = 'low' | 'normal' | 'high'
27
28
const priority = {
29
low: 'low',
0 commit comments