mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
c7e3819cf4
Reviewed By: blairvanderhoof Differential Revision: D4394074 fbshipit-source-id: f9c7f71ba921d345e3313a3a2be16a7f85a2e0af
17 lines
423 B
JavaScript
17 lines
423 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* @providesModule ImageSource
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
export type ImageSource = {
|
|
uri?: string,
|
|
} | number;
|