fit-select
Version:
选择框
20 lines (19 loc) • 420 B
TypeScript
export interface PropsInterface {
/**
* 分组的标签名
*/
label: string;
/**
* 不对子元素透传配置,变量配置时开启
*/
ignoreChildren?: boolean;
[x: string]: any;
}
export declare class Props implements PropsInterface {
label: string;
ignoreChildren: boolean;
}
export interface StateInterface {
}
export declare class State implements StateInterface {
}