interface PreRenderedChunk {
    exports: string[];
    facadeModuleId: null | string;
    isDynamicEntry: boolean;
    isEntry: boolean;
    isImplicitEntry: boolean;
    moduleIds: string[];
    name: string;
    type: "chunk";
}

Properties

exports: string[]
facadeModuleId: null | string
isDynamicEntry: boolean
isEntry: boolean
isImplicitEntry: boolean
moduleIds: string[]
name: string
type: "chunk"