UNPKG

51timapi

Version:

TimApi is a traffic related plugin for WdpApi.

10 lines (9 loc) 383 B
import { MinMaxType, Coord2DType, EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type'; export interface WindowType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> { windowStyle?: Partial<WindowEntityAtomType>; } export interface WindowEntityAtomType { url: string; size: MinMaxType; offset: Coord2DType; }