51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
13 lines (12 loc) • 500 B
TypeScript
import { EntityEidType, EntityGeometryType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface TilesType extends EntityEidType, EntityGeometryType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<AesTilesEntityAtomType> {
}
export interface AesTilesEntityAtomType {
spaceId: string;
rangeBox: Array<Array<number>>;
version: string;
}
export interface IAesTilesVisualAtom {
visualGroupToNodes: any;
hiddenLayers: Array<any>;
}