51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
14 lines (13 loc) • 436 B
TypeScript
import { EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface Text3DType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> {
text3DStyle?: Partial<Text3DEntityAtomType>;
}
export interface Text3DEntityAtomType {
text: string;
color: string;
type: string;
outline: number;
portrait: boolean;
space: number;
bounce: number;
}