File size: 275 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// @flow

/**
 * Type definitions for Image EventHandling
 */

export type Image = {|
  /**
   * Handle Image Loading Event
   */
  +onLoad?: (event: SyntheticEvent<*>) => mixed,
  /**
   * Handle Image Error Event
   */
  +onError?: (event: SyntheticEvent<*>) => mixed,
|};