Skip to content

Commit

Permalink
feat: export ResizeMode and Priority types (DylanVann#678)
Browse files Browse the repository at this point in the history
  • Loading branch information
vieiralucas committed Jul 17, 2020
1 parent 1fd5300 commit e33664f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {

const FastImageViewNativeModule = NativeModules.FastImageView

type ResizeMode = 'contain' | 'cover' | 'stretch' | 'center'
export type ResizeMode = 'contain' | 'cover' | 'stretch' | 'center'

const resizeMode = {
contain: 'contain',
Expand All @@ -23,7 +23,7 @@ const resizeMode = {
center: 'center',
} as const

type Priority = 'low' | 'normal' | 'high'
export type Priority = 'low' | 'normal' | 'high'

const priority = {
low: 'low',
Expand Down

0 comments on commit e33664f

Please sign in to comment.