18 lines
411 B
TypeScript
18 lines
411 B
TypeScript
import type { FC } from "react";
|
|
import type { BasicLeftTreeProps } from "../../Basic";
|
|
|
|
/**
|
|
* 组件属性
|
|
*/
|
|
export interface DepartmentLeftTreeProps extends Omit<BasicLeftTreeProps, "treeData"> {
|
|
/** 请求参数 */
|
|
params?: Record<string, any>;
|
|
}
|
|
|
|
/**
|
|
* 部门左侧树组件(港务局版本)
|
|
*/
|
|
declare const DepartmentLeftTree: FC<DepartmentLeftTreeProps>;
|
|
|
|
export default DepartmentLeftTree;
|