51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
17 lines (16 loc) • 370 B
TypeScript
import { Coord2DType } from '../data-type';
export interface IMiniMap {
eid?: string | null;
type?: string;
source?: {
bg?: string;
needle?: string;
mask?: string;
frame?: string;
};
mappingAnchors?: Array<Array<number>>;
display?: {
position?: Coord2DType;
size?: number;
};
}