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

18 lines
411 B
TypeScript
Raw Normal View History

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;