Member Junction
    Preparing search index...

    One lazy-loadable chunk: a stable identity plus the dynamic import that loads it.

    Many compound keys map to the same chunk, so chunkId is what the registry dedupes loads by — it must uniquely identify the chunk. The generated LAZY_FEATURE_CONFIG uses the dynamic import specifier (e.g. '@memberjunction/ng-dashboards/ai-dashboards.module').

    interface LazyFeatureChunk {
        chunkId: string;
        load: () => Promise<void>;
    }
    Index

    Properties

    Properties

    chunkId: string

    Stable, unique chunk identity. Also the label dev tools show for the chunk.

    load: () => Promise<void>

    Imports the chunk, which runs the @RegisterClass decorators inside it.