sticky-horse
Version:
With StickyHorse allow your users to send feedback to your team.
15 lines (14 loc) • 359 B
TypeScript
import React from 'react';
import { User } from '../types';
interface CursorOverlayProps {
users: User[];
currentUserId?: string | null;
trackedUserId?: string | null;
adminCursor?: {
x: number;
y: number;
} | null;
showUserInfo?: boolean;
}
export declare const CursorOverlay: React.FC<CursorOverlayProps>;
export {};