17 lines
348 B
TypeScript
17 lines
348 B
TypeScript
import type { FC } from "react";
|
|
import type { BasicLeftTreeProps } from "../Basic";
|
|
|
|
/**
|
|
* 组件属性
|
|
*/
|
|
export interface AreaLeftTreeProps extends Omit<BasicLeftTreeProps, "treeData" | "nameKey" | "idKey" | "childrenKey"> {
|
|
|
|
}
|
|
|
|
/**
|
|
* 属地左侧树组件
|
|
*/
|
|
declare const AreaLeftTree: FC<AreaLeftTreeProps>;
|
|
|
|
export default AreaLeftTree;
|