mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/36035 Changelog: [Internal] Reviewed By: NickGerleman Differential Revision: D42805202 fbshipit-source-id: 1f1d6e36ec6e19a1b46ce340be095bb60b8048f4
20 lines
529 B
JavaScript
20 lines
529 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
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import {typeof FillRateHelper as FillRateHelperType} from '@react-native/virtualized-lists';
|
|
|
|
const FillRateHelper: FillRateHelperType =
|
|
require('@react-native/virtualized-lists').FillRateHelper;
|
|
|
|
export type {FillRateInfo} from '@react-native/virtualized-lists';
|
|
module.exports = FillRateHelper;
|