Type alias TUpdateState<T>

TUpdateState<T>: T extends ILabel
    ? Partial<TLabelState>
    : T extends Space | MapObject
        ? Partial<TGeometryState>
        : never

The type for updating the state of map elements (colors, texts, etc.).

Type Parameters

  • T