Appearance
const onSelectionChange: Emitter<Event>;
An emitter that triggers on document selection change.
import { onSelectionChange } from "@monstermann/signals-web"; const unsubscribe = onSelectionChange((event) => console.log(event)); unsubscribe();