18 lines
450 B
TypeScript
18 lines
450 B
TypeScript
|
|
import type { FC } from "react";
|
||
|
|
import type { BasicCascaderProps } from "../Basic";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 组件属性
|
||
|
|
*/
|
||
|
|
export interface IndustryCascaderProps extends Omit<BasicCascaderProps, "options" | "placeholder" | "nameKey" | "idKey" | "childrenKey"> {
|
||
|
|
/** 占位符,默认为"行业类型" */
|
||
|
|
placeholder?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 行业类型级联组件
|
||
|
|
*/
|
||
|
|
declare const IndustryCascader: FC<IndustryCascaderProps>;
|
||
|
|
|
||
|
|
export default IndustryCascader;
|