mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types(SwitchCell): fix SwitchEvents
This commit is contained in:
parent
5d24a57fee
commit
9b50fe1887
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user