You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/types/tree/dictionary-tree.d.ts

19 lines
588 B

// 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, AntdProps } from '../component';
import { TreeProps } from './tree';
interface DictionaryTreeProps extends TreeProps {
/**
* Directory open logic, optional `false` 'click' 'dblclick'
* @default 'click'
* @type string
*/
expandAction?: string | boolean;
}
export declare class DictionaryTree extends AntdComponent {
$props: AntdProps & DictionaryTreeProps;
}