import { Vector3Like } from 'three'; import { TAbstractIntersectionsWatcherConfig } from './TAbstractIntersectionsWatcherConfig'; import { TIntersectionsDirectionWatcherParams } from './TIntersectionsDirectionWatcherParams'; export type TIntersectionsDirectionWatcherConfig = Omit & TAbstractIntersectionsWatcherConfig & Readonly<{ origin: Vector3Like; direction: Vector3Like; }>;