drip-table
Version:
A tiny and powerful enterprise-class solution for building tables.
9 lines (8 loc) • 333 B
TypeScript
import './index.less';
import RcSwitch from 'rc-switch';
import React from 'react';
declare type RcSwitchProps = React.ComponentProps<typeof RcSwitch>;
export interface SwitchProps extends RcSwitchProps {
}
declare const Checkbox: React.MemoExoticComponent<({ ...props }: SwitchProps) => React.JSX.Element>;
export default Checkbox;