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

19 lines
485 B
TypeScript
Raw Normal View History

import type { FC } from "react";
import type { BasicSelectTreeProps } from "../../Basic";
2025-11-04 08:39:32 +08:00
import { Params } from "../../../LeftTree/Department/Gwj";
/**
*
*/
export interface DepartmentSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "placeholder"> {
/** 请求参数 */
2025-11-04 08:39:32 +08:00
params?: Params;
}
/**
*
*/
declare const DepartmentSelectTree: FC<DepartmentSelectTreeProps>;
export default DepartmentSelectTree;