Skip to content

Instantly share code, notes, and snippets.

@krishna-acondy
Created February 11, 2018 19:50
Show Gist options
  • Save krishna-acondy/575636bd040a3366a703d8c1a80db1e1 to your computer and use it in GitHub Desktop.
Save krishna-acondy/575636bd040a3366a703d8c1a80db1e1 to your computer and use it in GitHub Desktop.
Serializer Interface
export interface Serializer {
fromJson(json: any): Resource;
toJson(resource: Resource): any;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment