Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Libraries/Modal/Modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ import type {SyntheticEvent} from '../Types/CoreEventTypes';
// destroyed before the callback is fired.
let uniqueModalIdentifier = 0;

type OrientationChangeEvent = SyntheticEvent<
export type OrientationChangeEvent = SyntheticEvent<
$ReadOnly<{|
orientation: 'portrait' | 'landscape',
|}>,
>;

type Props = $ReadOnly<{|
export type Props = $ReadOnly<{|
...ViewProps,

/**
Expand Down