This JavaScript literal describes the data structure that represents an array of objects and the layer that objects resides in. This structure is used by various API functions, eg.:

interface PickInfo {
    layer: FeatureLayer | TileSet3DLayer;
    objects: Feature<null | Shape, FeatureProperties>[];
}

Properties

Properties

The layer the objects are associated with.

objects: Feature<null | Shape, FeatureProperties>[]

The array of Feature instances.