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

18 lines
439 B
TypeScript
Raw Normal View History

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;