UNPKG

lingo3d

Version:

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

8 lines (7 loc) 273 B
import { GameObjectType } from "../../api/serializer/types"; type Props = { onDragStart?: (name: GameObjectType) => void; onDragEnd?: () => void; }; declare const Library: ({ onDragStart, onDragEnd }: Props) => import("preact").JSX.Element; export default Library;