UNPKG

51timapi

Version:

TimApi is a traffic related plugin for WdpApi.

13 lines (12 loc) 412 B
import { EntityEidType, BasicInfoAtomType, IPolygon2DAtom } from '../data-type'; export interface RangeEntityAtomType { type: string; fillAreaType: string; height: number; strokeWeight: number; color: string; } export interface RangeType extends EntityEidType, Partial<BasicInfoAtomType> { rangeStyle?: Partial<RangeEntityAtomType>; polygon2D?: Partial<IPolygon2DAtom>; }