mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 13:01:13 +00:00
22 lines
367 B
JavaScript
22 lines
367 B
JavaScript
|
/**
|
||
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
*
|
||
|
* @providesModule NavigationEvent
|
||
|
* @flow
|
||
|
*/
|
||
|
'use strict';
|
||
|
|
||
|
class NavigationEvent {
|
||
|
type: String;
|
||
|
target: Object;
|
||
|
data: any;
|
||
|
|
||
|
constructor(type: String, target: Object, data: any) {
|
||
|
this.type = type;
|
||
|
this.target = target;
|
||
|
this.data = data;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = NavigationEvent;
|