UNPKG

51timapi

Version:

TimApi is a traffic related plugin for WdpApi.

11 lines (10 loc) 437 B
import { MinMaxType, Coord2DType, EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type'; export interface RealTimeVideoEntityAtomType { url: string; resolution: MinMaxType; offset: Coord2DType; state: string; } export interface RealTimeVideoType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> { realTimeVideoStyle?: Partial<RealTimeVideoEntityAtomType>; }