types(SwitchCell): fix SwitchEvents

This commit is contained in:
陈嘉涵 2020-02-13 16:54:17 +08:00
parent 5d24a57fee
commit 9b50fe1887

View File

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