Files
react-native/Libraries/Image/ImageBackground.js.flow
T
Luna Wei 4cdacb1bab Image Background
Summary: Changelog: [Internal] Flow ImageBackground

Reviewed By: christophpurrer

Differential Revision: D39754591

fbshipit-source-id: dfd1386e32186a3f903f7c01f77698a54c58939d
2022-09-28 15:48:40 -07:00

18 lines
432 B
Plaintext

/**
* 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
* @format
*/
'use strict';
import * as React from 'react';
import type {ImageBackgroundProps} from './ImageProps';
declare class ImageBackground extends React.Component<ImageBackgroundProps> {}
module.exports = ImageBackground;