UNPKG

lingo3d

Version:

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

10 lines (9 loc) 399 B
import { GameObjectType } from "../../api/serializer/types"; export type ObjectName = Array<GameObjectType | Partial<Record<GameObjectType, string>>>; type Props = { names: ObjectName; onDragStart?: (name: GameObjectType) => void; onDragEnd?: () => void; }; declare const Components: ({ names, onDragStart, onDragEnd }: Props) => import("preact").JSX.Element; export default Components;