Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jörg Rose committed Mar 9, 2019
2 parents bbdc241 + 7e40b61 commit 9ab5501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions serializr.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export interface AdditionalPropArgs {
export interface PropSchema {
serializer(sourcePropertyValue: any): any;
deserializer(jsonValue: any, callback: (err: any, targetPropertyValue: any) => void, context: Context, currentPropertyValue: any): void;
beforeDeserialize: BeforeDeserializeFunc;
afterDeserialize: AfterDeserializeFunc;
beforeDeserialize?: BeforeDeserializeFunc;
afterDeserialize?: AfterDeserializeFunc;
}

export type Props = {
Expand Down

0 comments on commit 9ab5501

Please sign in to comment.