18 lines
463 B
TypeScript
18 lines
463 B
TypeScript
import type { FC } from "react";
|
|
import type { BasicSelectTreeProps } from "../Basic";
|
|
|
|
/**
|
|
* 组件属性
|
|
*/
|
|
export interface IndustrySelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "placeholder" | "nameKey" | "idKey" | "childrenKey"> {
|
|
/** 占位符,默认"行业类型" */
|
|
placeholder?: string;
|
|
}
|
|
|
|
/**
|
|
* 行业类型下拉树组件
|
|
*/
|
|
declare const IndustrySelectTree: FC<IndustrySelectTreeProps>;
|
|
|
|
export default IndustrySelectTree;
|