Skip to content

Commit

Permalink
Fix typo: ReactFaricEventTouch -> ReactFabricEventTouch
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaGross committed Jan 27, 2021
1 parent 3a15531 commit f35baaf
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/react-native-renderer/src/ReactNativeTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ export type ReactFabricEventTouch = {
};

export type ReactFabricEvent = {
touches: Array<ReactFaricEventTouch>,
changedTouches: Array<ReactFaricEventTouch>,
targetTouches: Array<ReactFaricEventTouch>,
touches: Array<ReactFabricEventTouch>,
changedTouches: Array<ReactFabricEventTouch>,
targetTouches: Array<ReactFabricEventTouch>,
target: number,
...
};
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

'use strict';

module.exports = jest.fn();

0 comments on commit f35baaf

Please sign in to comment.