UNPKG

@pmndrs/handle

Version:

framework agnostic expandable handle implementation for threejs

9 lines (8 loc) 291 B
import { HandleOptions } from '../store.js'; import type { Object3D } from 'three'; export declare class DragHandle<T = unknown> { private connections; constructor(objects: Array<Object3D>, getOptions?: () => HandleOptions<T>); update(time: number): void; dispose(): void; }