/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/Libraries/Lists/VirtualizedSectionList.js
25 строк
666 B
Alex Hunt
Add type exports to index.js.flow (#50225)
27 мар 2025, 06:46
27 мар 2025, 06:46
4f709af
Код
Авторство
О чём код?
/** * 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 VirtualizedSectionListType = typeof VirtualizedLists.VirtualizedSectionList; const VirtualizedSectionList: VirtualizedSectionListType = VirtualizedLists.VirtualizedSectionList; export type { SectionBase, ScrollToLocationParamsType, VirtualizedSectionListProps, } from '@react-native/virtualized-lists'; export default VirtualizedSectionList;