UNPKG

@wandelbots/wandelbots-js-react-components

Version:

React UI toolkit for building applications on top of the Wandelbots platform

11 lines 594 B
import type { ThreeElements } from "@react-three/fiber"; import type { Collider } from "@wandelbots/nova-api/v1"; export type MeshChildrenProvider = (key: string, collider: Collider) => React.ReactNode; type ColliderCollectionProps = { name?: string; colliders: Record<string, Collider>; meshChildrenProvider: MeshChildrenProvider; } & ThreeElements["group"]; export default function ColliderCollection({ name, colliders, meshChildrenProvider, ...props }: ColliderCollectionProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ColliderCollection.d.ts.map