interface GridConfig {
    fieldMap: {
        [source: string]: string;
    };
    id: string;
    layerIds: string[];
    state: default;
}

Properties

fieldMap: {
    [source: string]: string;
}

The field mapping for this grid.

GridConfig

id: string

The id of the grid.

GridConfig

layerIds: string[]

The ids for the layers that this grid contains.

GridConfig

state: default

The state manager for this grid.

GridConfig