ant-design-vue/types/select/option-group.d.ts

23 lines
539 B
TypeScript
Raw Normal View History

// 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
2020-08-31 06:59:56 +00:00
import { AntdComponent, AntdProps } from '../component';
import { VNodeChild } from 'vue';
export declare class OptionGroup extends AntdComponent {
2020-08-31 06:59:56 +00:00
$props: AntdProps & {
/**
2020-08-30 14:59:47 +00:00
* Key
* @type string
*/
key?: string;
/**
* Group label
* @type any (string | slot)
*/
label?: VNodeChild | JSX.Element;
2020-08-30 14:59:47 +00:00
};
}