fix(package/interface): fix menu onCheck typo (#640)

This commit is contained in:
Deathart
2024-09-09 23:59:33 +02:00
committed by GitHub
parent 5ac07d8b88
commit 85031dc13b

View File

@@ -27,7 +27,7 @@ interface MenuProps {
onClose?: (keyPressed?: 'Escape' | 'Backspace') => void;
onSelected?: ChangeFunction;
onSideScroll?: ChangeFunction;
onChecked?: ChangeFunction;
onCheck?: ChangeFunction;
cb?: ChangeFunction;
}