Files
AFFiNE-Mirror/blocksuite/affine/block-table/src/utils.ts
T
2025-02-10 14:14:53 +00:00

7 lines
140 B
TypeScript

export const cleanSelection = () => {
const selection = window.getSelection();
if (selection) {
selection.removeAllRanges();
}
};