MCPcopy
hub / github.com/webadderallorg/Recordly / ActiveCursorEffectInstance

Interface ActiveCursorEffectInstance

src/lib/extensions/renderHooks.ts:192–197  ·  view source on GitHub ↗

* Track active cursor effects (animations that persist across frames).

Source from the content-addressed store, hash-verified

190 * Track active cursor effects (animations that persist across frames).
191 */
192interface ActiveCursorEffectInstance {
193 interactionTimeMs: number;
194 cx: number;
195 cy: number;
196 interactionType: "click" | "double-click" | "right-click" | "mouseup";
197}
198
199const activeCursorInteractions: ActiveCursorEffectInstance[] = [];
200const MAX_EFFECT_DURATION_MS = 2000;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected