types: export more types (#8652)

This commit is contained in:
neverland
2021-05-03 09:47:56 +08:00
committed by GitHub
parent 721ecb6e76
commit 914aafb1d8
9 changed files with 14 additions and 5 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ type CascaderTab = {
selectedOption: CascaderOption | null;
};
type CascaderFieldNames = {
export type CascaderFieldNames = {
text?: string;
value?: string;
children?: string;
+1 -1
View File
@@ -5,4 +5,4 @@ const Cascader = withInstall<typeof _Cascader>(_Cascader);
export default Cascader;
export { Cascader };
export type { CascaderOption } from './Cascader';
export type { CascaderOption, CascaderFieldNames } from './Cascader';