KC's Workspace
    Preparing search index...

    The generated bundle output.

    interface RolldownOutput {
        __rolldown_external_memory_handle__: (
            keepDataAlive?: boolean,
        ) => ExternalMemoryStatus;
        output: [OutputChunk, ...(OutputChunk | OutputAsset)[]];
    }

    Hierarchy (View Summary)

    Index

    Properties

    __rolldown_external_memory_handle__: (
        keepDataAlive?: boolean,
    ) => ExternalMemoryStatus

    Frees the external memory held by this object.

    Type Declaration

      • (keepDataAlive?: boolean): ExternalMemoryStatus
      • Parameters

        • OptionalkeepDataAlive: boolean

          If true, evaluates all lazy fields before freeing memory. This will take time but prevents errors when accessing properties after freeing.

        Returns ExternalMemoryStatus

        Status object with freed boolean and optional reason string.

    output: [OutputChunk, ...(OutputChunk | OutputAsset)[]]

    The list of chunks and assets in the generated bundle.

    This includes at least one OutputChunk. It may also include more OutputChunk and/or OutputAssets.