51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
7 lines (6 loc) • 305 B
TypeScript
import { EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface ParticleType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType>, Partial<ParticleEntityAtomType> {
}
export interface ParticleEntityAtomType {
particleType: string;
}