lingo3d
Version:
Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor
11 lines (10 loc) • 382 B
TypeScript
import { CSSProperties } from "preact/compat";
import { PanEvent } from "../hooks/usePan";
type Props = {
style?: CSSProperties;
onPanStart?: (e: PanEvent) => void;
onPanEnd?: (e: PanEvent) => void;
onPan?: (e: PanEvent) => void;
};
declare const PanDiv: ({ style, onPanStart, onPanEnd, onPan }: Props) => import("preact/compat").JSX.Element;
export default PanDiv;