chore(project): refactor types dir

This commit is contained in:
vben
2024-05-21 22:14:25 +08:00
parent c31d21be50
commit f6087ce4e8
37 changed files with 141 additions and 65 deletions

View File

@@ -0,0 +1,2 @@
export type * from './ui';
export type * from '@vben-core/typings';

6
packages/types/src/ui.ts Normal file
View File

@@ -0,0 +1,6 @@
interface SelectListItem {
label: string;
value: string;
}
export type { SelectListItem };