category service

This commit is contained in:
hamid zarghami
2025-01-26 15:45:46 +03:30
parent bfb9f3cbcb
commit 22482aa20a
34 changed files with 1146 additions and 204 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[];
};
};
};
};