zent
Version:
一套前端设计语言和基于React的实现
16 lines (15 loc) • 497 B
TypeScript
/// <reference types="react" />
import { ICheckboxEvent } from '../../checkbox';
import { II18nLocaleTransfer } from '../../i18n';
interface IProps {
isAllChecked: boolean;
handleCheckBoxChange: (e: ICheckboxEvent<boolean>) => void;
compontentDisabled: boolean;
classNamePrefix: string;
i18n: II18nLocaleTransfer;
selectedKeysLength: number;
listDataLength: number;
title: React.ReactNode;
}
declare const AllCheckBox: React.FC<IProps>;
export default AllCheckBox;