mirror of
https://github.com/status-im/react-native.git
synced 2025-01-12 18:44:25 +00:00
eea4842972
Summary: This was done by running the command on: https://our.intern.facebook.com/intern/wiki/Flow_Strict/ ``` ag -L --ignore __snapshots__ 'flow strict$|noflow|generated|partially-generated' | ag '\.js$' | xargs ag -l 'flow' | sort > ~/temp cat ~/temp | xargs ag -L 'flow strict' | xargs sed -i 's/flow$/flow strict/' cat ~/temp | xargs ag -L 'flow strict$' | xargs sed -i 's/flow strict-local$/flow strict/' until flow; do flow --json | jq -r '.errors[].message[0].path' | sort | uniq | xargs hg revert; done ``` Reviewed By: sahrens Differential Revision: D8530207 fbshipit-source-id: c28c7ac5ed3e9b80f3d126d5f30463be8a8a744d
37 lines
845 B
JavaScript
37 lines
845 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow strict
|
|
* @format
|
|
*/
|
|
'use strict';
|
|
|
|
export type PackagerAsset = {
|
|
+__packager_asset: boolean,
|
|
+fileSystemLocation: string,
|
|
+httpServerLocation: string,
|
|
+width: ?number,
|
|
+height: ?number,
|
|
+scales: Array<number>,
|
|
+hash: string,
|
|
+name: string,
|
|
+type: string,
|
|
};
|
|
|
|
const assets: Array<PackagerAsset> = [];
|
|
|
|
function registerAsset(asset: PackagerAsset): number {
|
|
// `push` returns new array length, so the first asset will
|
|
// get id 1 (not 0) to make the value truthy
|
|
return assets.push(asset);
|
|
}
|
|
|
|
function getAssetByID(assetId: number): PackagerAsset {
|
|
return assets[assetId - 1];
|
|
}
|
|
|
|
module.exports = {registerAsset, getAssetByID};
|