KC's Workspace
    Preparing search index...

    Construct a type with the properties of T except for those in type K.

    interface RenderedChunk {
        dynamicImports: string[];
        exports: string[];
        facadeModuleId: string | null;
        fileName: string;
        imports: string[];
        isDynamicEntry: boolean;
        isEntry: boolean;
        moduleIds: string[];
        modules: { [id: string]: RenderedModule };
        name: string;
        type: "chunk";
    }

    Hierarchy (View Summary)

    Index

    Properties

    dynamicImports: string[]
    exports: string[]
    facadeModuleId: string | null
    fileName: string
    imports: string[]
    isDynamicEntry: boolean
    isEntry: boolean
    moduleIds: string[]
    modules: { [id: string]: RenderedModule }
    name: string
    type: "chunk"