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
Expand Up @@ -13,14 +13,15 @@


'use strict'; 'use strict';


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

0 comments on commit 6ae0b34

Please sign in to comment.