UNPKG

lingo3d

Version:

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

15 lines (14 loc) 492 B
import { ComponentChild } from "preact"; import { CSSProperties } from "preact/compat"; type DrawerProps = { show?: boolean; onHide?: () => void; children?: ComponentChild; style?: CSSProperties; className?: string; width?: number; anchor?: "left" | "right"; onDragOverMask?: () => void; }; declare const Drawer: ({ show, onHide, children, style, className, width, anchor, onDragOverMask }: DrawerProps) => import("preact").JSX.Element; export default Drawer;