Appearance
const onClick: Emitter<MouseEvent>;
An emitter that triggers on mouse click events.
import { onClick } from "@monstermann/signals-web"; const unsubscribe = onClick((event) => console.log(event)); unsubscribe();