Files
AFFiNE-Mirror/blocksuite/affine/blocks/block-table/src/utils.ts
T
2025-03-08 12:00:34 +08:00

7 lines
140 B
TypeScript

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