56 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
| // Project: https://github.com/vueComponent/ant-design-vue
 | |
| // Definitions by: akki-jat <https://github.com/akki-jat>
 | |
| // Definitions: https://github.com/vueComponent/ant-design-vue/types
 | |
| 
 | |
| import { AntdComponent } from '../component';
 | |
| import { CheckboxGroup } from './checkbox-group';
 | |
| 
 | |
| export declare class Checkbox extends AntdComponent {
 | |
|   static Group: typeof CheckboxGroup;
 | |
| 
 | |
|   /**
 | |
|    * get focus when component mounted
 | |
|    * @default false
 | |
|    * @type boolean
 | |
|    */
 | |
|   autoFocus: boolean;
 | |
| 
 | |
|   /**
 | |
|    * Specifies whether the checkbox is selected.
 | |
|    * @default false
 | |
|    * @type boolean
 | |
|    */
 | |
|   checked: boolean;
 | |
| 
 | |
|   /**
 | |
|    * Specifies the initial state: whether or not the checkbox is selected.
 | |
|    * @default false
 | |
|    * @type boolean
 | |
|    */
 | |
|   defaultChecked: boolean;
 | |
| 
 | |
|   /**
 | |
|    * Disable checkbox
 | |
|    * @default false
 | |
|    * @type boolean
 | |
|    */
 | |
|   disabled: boolean;
 | |
| 
 | |
|   /**
 | |
|    * indeterminate checked state of checkbox
 | |
|    * @default false
 | |
|    * @type boolean
 | |
|    */
 | |
|   indeterminate: boolean;
 | |
| 
 | |
|   /**
 | |
|    * remove focus
 | |
|    */
 | |
|   blur(): void;
 | |
| 
 | |
|   /**
 | |
|    * get focus
 | |
|    */
 | |
|   focus(): void;
 | |
| }
 |