add ui dialog create or select command

This commit is contained in:
Warunee Tamkoo 2024-09-24 11:19:41 +07:00
parent df4cb61671
commit 874cd33e9d
6 changed files with 388 additions and 22 deletions

View file

@ -49,4 +49,19 @@ interface DateSelectPerson {
profileId: string;
}
export type { Pagination, DataOption, ItemTabs, DataPerson, DateSelectPerson };
interface ListCommand {
id: string;
code: string;
name: string;
subtitle?: string;
commandSysId: string;
}
export type {
Pagination,
DataOption,
ItemTabs,
DataPerson,
DateSelectPerson,
ListCommand,
};