diff --git a/src/switch-cell/index.tsx b/src/switch-cell/index.tsx index a07f8fcf2..21d3173b0 100644 --- a/src/switch-cell/index.tsx +++ b/src/switch-cell/index.tsx @@ -4,7 +4,7 @@ import { inherit } from '../utils/functional'; // Components import Cell from '../cell'; -import Switch, { SwitchEvents } from '../switch'; +import Switch from '../switch'; import { switchProps, SharedSwitchProps } from '../switch/shared'; // Types @@ -18,6 +18,10 @@ export type SwitchCellProps = SharedSwitchProps & { cellSize?: string; }; +export type SwitchCellEvents = { + onChange?(checked: boolean): void; +}; + const [createComponent, bem] = createNamespace('switch-cell'); function SwitchCell( @@ -54,4 +58,4 @@ SwitchCell.props = { }, }; -export default createComponent(SwitchCell); +export default createComponent(SwitchCell);