28 lines
800 B
TypeScript
28 lines
800 B
TypeScript
/// <reference types="react" />
|
|
import { CheckboxItem, CheckboxItemProps } from './CheckboxItem';
|
|
declare enum ICON_POSITION {
|
|
LEFT = "left",
|
|
RIGHT = "right"
|
|
}
|
|
export interface CheckboxItemAllCheckProps extends CheckboxItemProps {
|
|
checkedStatus?: number;
|
|
}
|
|
export declare class CheckboxItemAllCheck extends CheckboxItem<CheckboxItemAllCheckProps, any> {
|
|
static defaultProps: {
|
|
label: string;
|
|
disabled: boolean;
|
|
checkedStatus: number;
|
|
iconPosition: ICON_POSITION;
|
|
checkedIcon: any;
|
|
style: {};
|
|
value: any;
|
|
checked: boolean;
|
|
};
|
|
constructor(props: any);
|
|
componentWillReceiveProps(nextProps: any): void;
|
|
handlePress: () => void;
|
|
renderLabel(): JSX.Element;
|
|
renderIcon: () => JSX.Element;
|
|
}
|
|
export {};
|