2017-07-25 00:04:38 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2017-07-25 00:04:38 +00:00
|
|
|
*
|
2018-06-20 07:35:29 +00:00
|
|
|
* @flow strict
|
2017-07-25 00:04:38 +00:00
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const ASSET_REGISTRY_PATH = 'react-native/Libraries/Image/AssetRegistry';
|
2017-11-03 13:06:32 +00:00
|
|
|
const ASSET_SOURCE_RESOLVER_PATH =
|
|
|
|
'react-native/Libraries/Image/AssetSourceResolver';
|
2017-07-25 00:04:38 +00:00
|
|
|
|
2017-11-03 13:06:32 +00:00
|
|
|
module.exports = {
|
|
|
|
ASSET_REGISTRY_PATH,
|
|
|
|
ASSET_SOURCE_RESOLVER_PATH,
|
|
|
|
};
|