fix: submit message

This commit is contained in:
jialin
2024-09-22 14:55:23 +08:00
parent af077c4706
commit 2e5f0d9210
21 changed files with 907 additions and 145 deletions
+4 -4
View File
@@ -22,14 +22,14 @@ declare namespace Global {
id: number;
}
interface BaseListItem {
interface BaseListItem<T> {
key: string;
value: string | number;
value: T;
}
interface BaseOption {
interface BaseOption<T> {
label: string;
value: string | number;
value: T;
}
type SearchParams = Pagination & { search?: string };