Handle includes in the front for the hisory

This commit is contained in:
2023-11-29 18:06:28 +01:00
parent 3f0c2472cb
commit 59a48ad060
5 changed files with 12 additions and 29 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import * as yup from 'yup';
type ResponseHandler<APIType, ModelType = APIType> = {
validator: yup.Schema<APIType>;
transformer: (value: APIType) => ModelType;
transformer?: (value: APIType) => ModelType;
};
export default ResponseHandler;