Files
react-native/packages/react-native/Libraries/Lists/FillRateHelper.js
T
Jakub Piasecki 1cf4c84ba0 Update files in packages/virtualized-lists to use export syntax (#49262)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/49262

Changelog: [General][Breaking] Deep imports into `react-native/virtualized-lists` with require syntax may need to be appended with `.default`

Reviewed By: huntie

Differential Revision: D69308532

fbshipit-source-id: 6de15d46e0931616bc9849edbccb7cf745e15dd5
2025-02-11 09:25:22 -08:00

20 lines
549 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 strict-local
* @format
*/
'use strict';
import VirtualizedLists from '@react-native/virtualized-lists';
type FillRateHelperType = typeof VirtualizedLists.FillRateHelper;
const FillRateHelper: FillRateHelperType = VirtualizedLists.FillRateHelper;
export type {FillRateInfo} from '@react-native/virtualized-lists';
export default FillRateHelper;