51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
12 lines (11 loc) • 365 B
TypeScript
import { EntityEidType, BasicInfoAtomType, IPolylineATom } from '../data-type';
export interface PathType extends EntityEidType, Partial<BasicInfoAtomType> {
pathStyle?: Partial<PathEntityAtomType>;
polyline?: IPolylineATom;
}
export interface PathEntityAtomType {
type: string;
width: number;
color: string;
passColor: string;
}