Spaces:
Running
Running
File size: 414 Bytes
645859a | 1 2 3 4 5 6 7 8 9 10 11 | import * as React from 'react';
import * as THREE from 'three';
export type CycleRaycastProps = {
onChanged?: (hits: THREE.Intersection[], cycle: number) => null;
preventDefault?: boolean;
scroll?: boolean;
keyCode?: number;
portal?: React.MutableRefObject<HTMLElement>;
};
export declare function CycleRaycast({ onChanged, portal, preventDefault, scroll, keyCode, }: CycleRaycastProps): null;
|