mylingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
12 lines (11 loc) • 355 B
TypeScript
import { ComponentChildren } from "preact";
interface ContextMenuProps {
data?: {
x: number;
y: number;
};
setData: (value: any) => void;
children?: ComponentChildren;
}
declare const ContextMenu: ({ data, setData, children }: ContextMenuProps) => import("preact").VNode<any> | null;
export default ContextMenu;