Files
react-native/Libraries/Components/SafeAreaView/SafeAreaView.flow.js
T
Luna Wei b35b2cc8ca SafeAreaView
Summary: Changelog: [Internal] - Add flow type for SafeAreaView

Reviewed By: cipolleschi

Differential Revision: D38921819

fbshipit-source-id: be4da3c6b1241d5c3a059b7eeb1e539b3a1debde
2022-08-26 19:10:03 -07:00

20 lines
454 B
JavaScript

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
*/
import * as React from 'react';
import View from '../View/View';
import type {ViewProps} from '../View/ViewPropTypes';
export type SafeAreaViewType = React.AbstractComponent<
ViewProps,
React.ElementRef<typeof View>,
>;