Skip to content

Commit

Permalink
Fix flow types (#320)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Narbutovich(g) authored and DylanVann committed Oct 22, 2018
1 parent 8f702ed commit ba44753
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js.flow
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ export type FastImageSource = {
export type FastImageProps = $ReadOnly<{|
...ViewProps,
onError?: ?() => void,
onLoad?: ?(event?: OnLoadEvent) => void,
onLoad?: ?(event: OnLoadEvent) => void,
onLoadEnd?: ?() => void,
onLoadStart?: ?() => void,
onProgress?: ?(event?: OnProgressEvent) => void,
onProgress?: ?(event: OnProgressEvent) => void,

source: FastImageSource | number,

Expand Down

0 comments on commit ba44753

Please sign in to comment.