14 lines
		
	
	
		
			374 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			374 B
		
	
	
	
		
			TypeScript
		
	
	
| // Project: https://github.com/vueComponent/ant-design-vue
 | |
| // Definitions: https://github.com/vueComponent/ant-design-vue/types
 | |
| 
 | |
| import { AntdComponent } from '../component';
 | |
| 
 | |
| export declare class Option extends AntdComponent {
 | |
|   /**
 | |
|    * value of suggestion, the value will insert into input filed while selected
 | |
|    * @default ''
 | |
|    * @type string
 | |
|    */
 | |
|   value: string;
 | |
| }
 |