Latest updates from IceHrmPro
This commit is contained in:
24
web/node_modules/rc-checkbox/index.d.ts
generated
vendored
Normal file
24
web/node_modules/rc-checkbox/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import * as React from "react";
|
||||
|
||||
export interface Props {
|
||||
prefixCls?: string;
|
||||
className?: string;
|
||||
style?: React.CSSProperties;
|
||||
name?: string;
|
||||
id?: string;
|
||||
type?: string;
|
||||
defaultChecked?: number | boolean;
|
||||
checked?: number | boolean;
|
||||
disabled?: boolean;
|
||||
onFocus?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
||||
onBlur?: (e: React.FocusEvent<HTMLInputElement>) => void;
|
||||
onChange?: (e: Event) => void;
|
||||
onClick?: (e: React.MouseEvent<HTMLInputElement>) => void;
|
||||
tabIndex?: string | number;
|
||||
readOnly?: boolean;
|
||||
required?: boolean;
|
||||
autoFocus?: boolean;
|
||||
value?: any;
|
||||
}
|
||||
|
||||
export default class CheckBox extends React.Component<Props> {}
|
||||
Reference in New Issue
Block a user