UNPKG

lingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

12 lines (11 loc) 309 B
export type PointType = { x: number; y: number; z?: number; }; export type Point3dType = { x: number; y: number; z: number; }; export declare const isPoint: (v: any, type?: "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function") => v is PointType;