interface DetailsConfigItem {
    fields?: DetailsFieldItem[];
    id: string;
    name: string;
    priority: number;
    template: string;
}

Implemented by

Properties

fields?: DetailsFieldItem[]

An array to specify how the layer data fields are defined.

DetailsConfigItem

id: string

The layer ID that we want to bind the custom template to.

DetailsConfigItem

name: string

The optional display name of the layer.

DetailsConfigItem

priority: number

Specifies result priority for auto-open. Lower number is higher priority.

DetailsConfigItem

template: string

The component that we would like to use as a template.

DetailsConfigItem