51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
14 lines (13 loc) • 426 B
TypeScript
import { EntityEidType, BasicInfoAtomType, IPolylineATom } from '../data-type';
export interface ParabolaEntityAtomType {
type: string;
topHeight: number;
topScale: number;
width: number;
color: string;
gather: boolean;
}
export interface ParabolaType extends EntityEidType, Partial<BasicInfoAtomType> {
parabolaStyle?: Partial<ParabolaEntityAtomType>;
polyline?: IPolylineATom;
}