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; onClose?: (keyPressed?: 'Escape' | 'Backspace') => void;
onSelected?: ChangeFunction; onSelected?: ChangeFunction;
onSideScroll?: ChangeFunction; onSideScroll?: ChangeFunction;
onChecked?: ChangeFunction; onCheck?: ChangeFunction;
cb?: ChangeFunction; cb?: ChangeFunction;
} }