Fix list schemas

This commit is contained in:
Alex Mikhalev 2019-07-19 23:59:10 -06:00
parent 733814ae7e
commit 9b54655344

View File

@ -65,7 +65,7 @@ export default function list(propSchema: PropSchema): PropSchema {
propSchema.deserializer(item, itemDone, context, undefined),
done);
},
beforeDeserialize: () => {},
afterDeserialize: () => {},
beforeDeserialize: undefined as any,
afterDeserialize: undefined as any,
};
}