This commit is contained in:
hamid zarghami
2025-01-22 10:23:52 +03:30
parent 99573f050a
commit ab441a593c
18 changed files with 344 additions and 39 deletions
+13 -3
View File
@@ -5,6 +5,16 @@ export type XOR<T, U> = T | U extends object
: T | U;
export type ItemsSelectType = {
value: any,
label: string,
}
value: string;
label: string;
};
export type ErrorType = Error & {
response?: {
data?: {
error: {
message: string[];
};
};
};
};