MCP Apps Kit - v0.5.0
    Preparing search index...

    Interface BuildResult

    Result of building React UIs.

    interface BuildResult {
        duration: number;
        errors: BuildError[];
        files: Map<string, string>;
        outputs: Map<string, string>;
        warnings: string[];
    }
    Index

    Properties

    duration: number

    Total build duration in milliseconds.

    errors: BuildError[]

    Any errors that occurred during the build. If non-empty, some UIs may not have been built successfully.

    files: Map<string, string>

    Map of UI keys to their output file paths. Only populated if outDir was specified.

    outputs: Map<string, string>

    Map of UI keys to their compiled HTML content. Keys match the input record keys.

    warnings: string[]

    Any warnings generated during the build.