UNPKG

@three3d/tools

Version:

@three3d/tools 提供了 ThreeJS 常用的工具库

12 lines 320 B
import type { IVector3 } from "type-tls"; import type { EulerOrder } from "three"; export interface IEuler extends IVector3 { order?: EulerOrder; } export interface IColor { r: number; g: number; b: number; } export type IColorRepresentation = IColor | number | string; //# sourceMappingURL=type.d.ts.map