Home / File/ ReactFlightImportMetadata.js — react Source File

ReactFlightImportMetadata.js — react Source File

Architecture documentation for ReactFlightImportMetadata.js, a javascript file in the react codebase. 0 imports, 2 dependents.

Entity Profile

Dependency Diagram

graph LR
  c067c5a7_60f7_4ceb_6b49_702f25837676["ReactFlightImportMetadata.js"]
  90ff5f50_37e1_106e_b9fe_73fac9d23b50["ReactFlightClientConfigBundlerParcel.js"]
  90ff5f50_37e1_106e_b9fe_73fac9d23b50 --> c067c5a7_60f7_4ceb_6b49_702f25837676
  519cbd03_7568_21cc_974b_ab7e2ca59f15["ReactFlightServerConfigParcelBundler.js"]
  519cbd03_7568_21cc_974b_ab7e2ca59f15 --> c067c5a7_60f7_4ceb_6b49_702f25837676
  style c067c5a7_60f7_4ceb_6b49_702f25837676 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

/**
 * 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
 */

// This is the parsed shape of the wire format which is why it is
// condensed to only the essentialy information
export type ImportMetadata = [
  // eslint does not understand Flow tuple syntax.
  /* eslint-disable */
  id: string,
  name: string,
  bundles: Array<string>,
  importMap?: {[string]: string},
  /* eslint-enable */
];

export const ID = 0;
export const NAME = 1;
export const BUNDLES = 2;
export const IMPORT_MAP = 3;

Domain

Frequently Asked Questions

What does ReactFlightImportMetadata.js do?
ReactFlightImportMetadata.js is a source file in the react codebase, written in javascript. It belongs to the BabelCompiler domain.
What files import ReactFlightImportMetadata.js?
ReactFlightImportMetadata.js is imported by 2 file(s): ReactFlightClientConfigBundlerParcel.js, ReactFlightServerConfigParcelBundler.js.
Where is ReactFlightImportMetadata.js in the architecture?
ReactFlightImportMetadata.js is located at packages/react-server-dom-parcel/src/shared/ReactFlightImportMetadata.js (domain: BabelCompiler, directory: packages/react-server-dom-parcel/src/shared).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free