/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/react-native-codegen/src/parsers/schema.js
62 строки
1 KB
Marco Wang
Transform $ReadOnlyArray to ReadonlyArray 18/n (#55152)
14 янв 2026, 08:59
14 янв 2026, 08:59
92c3278
Код
Авторство
О чём код?
/** * 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 * @format */ 'use strict'; import type { CommandTypeAnnotation, EventTypeShape, ExtendsPropsShape, NamedShape, OptionsShape, PropTypeAnnotation, SchemaType, } from '../CodegenSchema.js'; export type ComponentSchemaBuilderConfig = Readonly<{ filename: string, componentName: string, extendsProps: ReadonlyArray<ExtendsPropsShape>, events: ReadonlyArray<EventTypeShape>, props: ReadonlyArray<NamedShape<PropTypeAnnotation>>, commands: ReadonlyArray<NamedShape<CommandTypeAnnotation>>, options?: ?OptionsShape, }>; function wrapComponentSchema({ filename, componentName, extendsProps, events, props, options, commands, }: ComponentSchemaBuilderConfig): SchemaType { return { modules: { [filename]: { type: 'Component', components: { [componentName]: { ...(options || {}), extendsProps, events, props, commands, }, }, }, }, }; } module.exports = { wrapComponentSchema, };