Skip to content

Commit

Permalink
Fix FIGTabs SST race
Browse files Browse the repository at this point in the history
Reviewed By: TheSavior

Differential Revision: D6576053

fbshipit-source-id: d727811f7bfdb5cb9a0da010ee0c225029b18b26
  • Loading branch information
sahrens authored and facebook-github-bot committed Dec 16, 2017
1 parent d021dd2 commit 6ae0b34
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions Libraries/Types/CoreEventTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@

'use strict';

export type Layout = {
x: number,
y: number,
width: number,
height: number,
};
export type LayoutEvent = {
nativeEvent: {
layout: Layout,
},
};
export type Layout = {|
+x: number,
+y: number,
+width: number,
+height: number,
|};
export type LayoutEvent = {|
+nativeEvent: {|
+layout: Layout,
|},
+persist: () => void,
|};

0 comments on commit 6ae0b34

Please sign in to comment.