UNPKG

react-together-primereact

Version:

A set of ready-to-use PrimeReact components that are synchronized across multiple users in real-time!

7 lines (5 loc) 313 B
import { InputSwitchProps } from 'primereact/inputswitch'; export interface InputSwitchTogetherProps extends Omit<InputSwitchProps, 'checked' | 'onChange'> { rtKey: string; } export default function InputSwitchTogether({ rtKey, ...props }: InputSwitchTogetherProps): import("react/jsx-runtime").JSX.Element;