/*! * Ecctrl * https://github.com/pmndrs/ecctrl * * SPDX-FileCopyrightText: 2023-2026 Erdong Chen * SPDX-License-Identifier: MIT */ import type { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from "react"; export type ForwardRefComponent = ForwardRefExoticComponent & RefAttributes>; export interface EcctrlUserDataType { ecctrl?: { excludeRay?: boolean; excludeCharacterRay?: boolean; excludeVehicleRay?: boolean; }; }