fix: submit message
This commit is contained in:
Vendored
+4
-4
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user