zy-react-library/components/SelectTree/Department/Gwj/index.d.ts

18 lines
439 B
TypeScript

import type { FC } from "react";
import type { BasicSelectTreeProps } from "../../Basic";
/**
* 组件属性
*/
export interface DepartmentSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "placeholder"> {
/** 请求参数 */
params?: Record<string, any>;
}
/**
* 部门下拉树组件(港务局版本)
*/
declare const DepartmentSelectTree: FC<DepartmentSelectTreeProps>;
export default DepartmentSelectTree;