Cesium Utils - v0.2.6
    Preparing search index...

    Type Alias ItemFor<C>

    ItemFor: C extends DataSourceCollection
        ? DataSource
        : C extends EntityCollection
            ? Entity
            : C extends ImageryLayerCollection
                ? ImageryLayer
                : C extends PrimitiveCollection ? Primitives : never

    Gets the item type for a given collection type

    Type Parameters